我想摄入没有。用户和基于摄入量没有。想要显示名称和密码。但它只显示一个 text_box 和一个提交按钮,没有任何反应。
代码是这样的: -
<?php
mysql_connect('localhost','root','');
mysql_select_db('wp');
if(isset($_POST['t1'])&&isset($_POST['submit'])){
$t1=$_POST['t1'];
$query="SELECT `name` , `password` FROM `register` WHERE `intake` ='$t1'";
if($result=mysql_query($query)){
?>
<table border="1">
<thead>
<tr>
<th>name</th>
<th>password</th>
</tr>
</thead>
<tbody>
<?php
while($row=mysql_fetch_assoc($result)){
$name=$row['name'];
$password=$row['password'];
echo"<tr>
<td>$name</td>
<td>$password</td>
</tr>";
}
}
}
?>
</tbody>
</table>
<form action="table.php" method="post">
<input type="text" name="t1" />
<input type="submit" value="submit" />
</form>
预先感谢。
`