我有一个128条码的脚本,并且它使用随机数生成条形码,我怎样才能通过在php中使用文本框而不是rand来实现?
这是我的代码
<!DOCTYPE html>
<html>
<head>
<title>asd</title>
</head>
<body>
<?php
if (isset($_POST['submit'])) {
$bcode = $_GET['id'];
ini_set('display_errors',1);
error_reporting(E_ALL|E_STRICT);
include 'Code128.php';
$code = isset($_GET['code']) ? $_GET['code'] :$bcode;
header("Content-type: image/svg+xml");
echo draw($code);
}
?>
<form method="POST">
<input type="text" name="id">
<input type="submit" name="submit">
</form>
</body>
</html>
答案 0 :(得分:0)
文本框无法随机生成数字...
答案 1 :(得分:0)
我已经解决了这个问题,
meta-plnx-generated
barcode.php