Right now here's my code:
$query1="Select *from table1";
$data_set=mysql_query($query1);
if(mysql_num_rows($data_set)==0){
$query2="Select *from table2";
$data_re_set = mysql_query($query2);
if(mysql_num_rows($data_re_set)==0){
//so if there's no info in either of these places
show_form();
}
So here's how the previous guy did it - 2 forms get written to 2 different tables and when someone comes to get their form this checks to make sure they haven't already submitted...
Is there a better way to do this?