How can test to see if any records were returned BEFORE the while loop?
Is there a function like mysqlEOF($rs)?
while($row = mysqlfetch($rs)){ //print data etc, etc... }
thank you! -ian (newbie)
doh! just found mysql_num_rows() that will work fine.