You need to loop through the data:
<?php
include('connect.php');
$idno = (integer) $_POST['idno'];
$sql="select * from stud where ID_No='$idno';";
$result=mysql_query($sql);
while ($s=mysql_fetch_array($result)) {
$addr = $s['Home_addr'];
echo "$addr";
}
?>
Also, please don't use mysql_* functions to write new code. They are no longer maintained and the community has begun deprecation process. See the red box? Instead you should learn about prepared statements and use either PDOPDO or MySQLi. If you can't decide which, this article will help you. Also see Why shouldn't I use mysql functions in PHP?Why shouldn't I use mysql functions in PHP?