OK,
I tried this, but am getting this error:
Warning:  Wrong parameter count for mysql_num_rows() in /.../testals.php on line 189
189> if (mysql_num_rows() == 1)
What's up?
John

$myconnection = mysql_connect($server,$user,$pass);
mysql_select_db($db,$myconnection);

$news = mysql_query("select StudentId from $table where StudentID = $StudentID");

 if (mysql_num_rows() == 1)
  include ("./html/access_error.htm");
 else
  include ("./html/registration.htm");




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to