* Copyright (C) 2005 James Grant * Copyright (C) 2024 AlgoLibre Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ ?> prepare("SELECT id FROM schools WHERE year='2011'"); $numschools->execute(); while ($s = $numschools->fetch(PDO::FETCH_OBJ)) { // 1 in 4 chance of actually using this school $o = rand(1, 4); if ($o == 1) $schools[] = $s->id; } $ns = count($schools); for ($x = 0; $x < $numprojects; $x++) { $id = 0; $regnum = rand(100000, 999999); $email = strtolower(getrand($firstnames) . '@' . getrand($domains)); $pd = rand(1, $prob_unpaid); if ($pd == 1) $status = 'paymentpending'; else $status = 'complete'; $q = $pdo->prepare("INSERT INTO registrations (num,email,start,status,year) VALUES (?,?,NOW(),?,2011)"); $q->execute([$regnum,$email,$status]); if ($id = $pdo->lastInsertId()) { $peeps = rand(1, $prob_dual); if ($peeps == 1) $num = 2; else $num = 1; $gradenum = rand(1, 10); if ($gradenum < 7) { $grade = rand(7, 8); $cat = 1; } else if ($gradenum < 9) { $grade = rand(9, 10); $cat = 2; } else if ($gradenum < 10) { $grade = rand(11, 12); $cat = 3; } $schools_id = $schools[rand(0, $ns)]; for ($a = 1; $a <= $num; $a++) { $sexnum = rand(1, 3); if ($sexnum < 3) $sex = 'male'; else $sex = 'female'; $firstname = getrand($firstnames); $email = strtolower($firstname) . '@' . getrand($domains); $stmt = $pdo->prepare("INSERT INTO students (registrations_id,firstname,lastname,email,sex,grade,year,schools_id) VALUES (?,?,?,?,?,?,'2011',?)"); $stmt->execute([$id,$firstname,getrand($lastnames),$email,$sex,$grade,$schools_id]); } $div = rand(1, 6); $title = ucwords(getrand($starters) . ' ' . getrand($nouns) . ' ' . getrand($joiners) . ' ' . getrand($nouns)); $req_enum = rand(1, 4); if ($req_enum == 1) $req_e = 'yes'; else $req_e = 'no'; $req_tnum = rand(1, 30); if ($req_tnum == 1) $req_t = 'no'; else $req_t = 'yes'; $langnum = rand(1, 10); if ($langnum < 4) $lang = 'fr'; else $lang = 'en'; $stmt = $pdo->prepare("INSERT INTO projects (registrations_id,projectcategories_id,projectdivisions_id,title,year,req_electricity,req_table,language) VALUES (?,?,?,? ?,2011,?,?,?)"); $stmt->execute([$id,$cat,$div,$title,$lang,$req_e,$req_t,$lang]); } } ?>