<?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/>';
}
?>
But here the problem is in mysql_num_rows.
It showing the error as " mysql_num_rows(): supplied argument is not a valid MySQL result resource ".
Please Anybody Help Me.