<?php
if(isset($REQUEST["feno"]))
{
require_once("connect.php");
$rows=mysql_query("select * from users where eno='$REQUEST[feno]';", $con);
$c=mysql_num_rows($rows);
if(!$c)
echo 'No Record Found ! <br/>';
}
?>
It is the script. But error is comming in this script. So, Please anybody help me and tell me the correct script.