From 79fe64926c7bd2c7ec57e006e759fc2bcf4ee622 Mon Sep 17 00:00:00 2001 From: james Date: Thu, 23 Feb 2006 20:40:07 +0000 Subject: [PATCH] Make some judges be incomplete when populating with fake data --- scripts/judges_fake.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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