- 论坛徽章:
- 0
|
我刚刚开始学php,想试一下运行一下下面的程序,不知怎么回事,表单中的数据无法传到Name='$old_name'中。
下面是全部代码,哪位高手可以帮我看看。
文件为index.php
<html>
<head>
<tilte>范例返回查询数据</title>
</head>
<body>
<h2 align="center">查询数据区</h2>
<?
if(!empty($old_name)){
$link_ID=mysql_connect("localhost","root","158865271");
mysql_select_db("School",$link_ID);
$str="select * from Ques where Name='$old_name';";
$result=mysql_query($str,$link_ID);
mysql_close($link_ID);
$record=mysql_fetch_array($result);
}
?>
请在下列域输入数据后按下<font color=red>查询</font>按钮。<br><br>
<form action="index.php" method="post">
姓名<input type="text" name="old_name">
<input type="submit" value="查询">
</form>
<br><br>
<h3 align="left">查询结果</h3>
<?
echo "姓名:";echo $record[Name];
echo '<br>';
echo "电话:";echo $record[Pn];
?>
</body>
</html> |
|