我这里有
<table align="center">
<tr>
<td>ID No</td><td>:</td>
<td><input type="text" name="idno" size="10px" maxlength="15px" ></td>
<td><input type="submit" value="Search ID No." name="search"></td>
</tr>
</table>
<?php
include('connect.php');
$sql="select * from stud where ID_No='$_POST[idno]';";
$result=mysql_query($sql);
$s=mysql_fetch_array($result);
$addr = $s[Home_addr];
echo"$addr";
?>
如何获取整个地址?
此脚本仅返回数据库中的第一个单词。