diff --git a/scripts/judges_fake.php b/scripts/judges_fake.php index 3805a864..8c38bfcf 100644 --- a/scripts/judges_fake.php +++ b/scripts/judges_fake.php @@ -24,7 +24,7 @@ \n"; - $q=mysql_query("INSERT INTO judges (firstname,lastname,email,years_school,years_regional,years_national,willing_chair,complete) VALUES ('$firstname','$lastname','$email','$years_school','$years_regional','$years_national','$willing_chair','yes')"); + //there's a 1 in 30 chance that this judge is not yet completed their info + $compnum=rand(0,30); + if($compnum==1) $complete="no"; else $complete="yes"; + + $q=mysql_query("INSERT INTO judges (firstname,lastname,email,years_school,years_regional,years_national,willing_chair,complete) VALUES ('$firstname','$lastname','$email','$years_school','$years_regional','$years_national','$willing_chair','$complete')"); $id=mysql_insert_id(); //for both these, the annealer expects -2 to 2 , but since expertise was done waaaaaay before as 1-5 we'll add it as 1-5 and the annealer will subtract 3