prepare("SELECT * FROM schools WHERE year=?"); $q->execute([$config['FAIRYEAR']]); while ($s = $q->fetch(PDO::FETCH_ASSOC)) { /* Science head */ if (trim($s['sciencehead']) != '') { $u = db_update_146_handle($s['sciencehead'], $s['scienceheademail'], $s['scienceheadphone'], 'teacher'); if ($u != false) { $stmt = $pdo->prepare("UPDATE schools SET sciencehead_uid=? WHERE id=?"); $stmt->execute([$u['uid'],$s['id']]); } } /* Now the principal */ if (trim($s['principal']) != '') { $u = db_update_146_handle($s['principal'], $s['schoolemail'], $s['phone'], 'principal'); if ($u != false) { $stmt = $pdo->prepare("UPDATE schools SET principal_uid=? WHERE id=?"); $stmt->execute([$u['uid'],$s['id']]); } } } } ?>