主程序:
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>测试</title>
</head>
<body>
<p>
<!--webbot bot="HitCounter" i-image="4" I-ResetValue="0" B-Reset="FALSE" I-Digits="0" U-Custom --></p>
<form method="OST" action="bb.php">
<p>名字: <input type="text" name="TTT" size="20"></p>
<p>单项选择: <input type="radio" value="男" checked name="R1">男<input type="radio" name="R1" value="女">女</p>
<p>多项选择: <input type="checkbox" name="C1" value="篮球">篮球<input type="checkbox" name="C2" value="足球">足球<input type="checkbox" name="C3" value="排球">排球</p>
<p> <input type=submit value="确定"></p>
</form>
<?php
global $TTT;
echo $TTT; //?????????????????????
?>
</body>
</html>
bb.php是这样:
<?php
global $TTT;
if ($TTT)
echo "我叫$TTT";
?>
请教大家:为什么没有执行问号的部分,没有打印出名字? 而且当"确定"后,执行bb.php也没有打印结果呢? |