/* AUTHOR: Walter Cattebeke DATE: 08-July-2004 EMAIL: cachiweb@telesurf.com.py LICENSE: This code is free. You can use it and/or modify it. I only want to be mentioned and notified if you intend to do either. Please read the notes.txt ! */ require("core.php"); ?> if ($p_submit == "CONVERT") {?> if (!isset($p_text)){ $p_textEnc = "1234567890"; } else { $p_textEnc = rawurlencode($p_text); } if (!isset($p_xDim)){ $p_xDim = 1; } if (!isset($p_w2n)){ $p_w2n = 3; } if (!isset($p_charHeight)){ $p_charHeight = 50; } $p_charGap = $p_xDim; $msg=""; if (!safeStr($p_bcType, $p_text)){ $msg = "Non-Valid characters inside string"; } $dest = "wrapper.php?p_bcType=$p_bcType&p_text=$p_textEnc" . "&p_xDim=$p_xDim&p_w2n=$p_w2n&p_charGap=$p_charGap&p_invert=$p_invert&p_charHeight=$p_charHeight" . "&p_type=$p_type&p_label=$p_label&p_rotAngle=$p_rotAngle&p_checkDigit=$p_checkDigit" ?>
Text | echo $p_text; ?> |
if ($msg != ""){ ?> echo $msg; ?> } else { ?> |
|
Back |