Welcome to Kids Monitoring
require_once 'func_class.php'; session_start(); if (isset($_SESSION['parent_login']) && isset($_SESSION['parent_fullname'])) { Echo " Dear ".$_SESSION['parent_fullname'].""; $student_id=$_SESSION['students']; $max = sizeof($student_id); $sql = get_student($student_id, $max); $qr_result = mysql_query($sql) or die(mysql_error()); if (!empty($qr_result)) { if ($max>0) { $st="Your children: "; } else { $st="Your Child's name is: "; }; $k=0; while ($data = mysql_fetch_array($qr_result)) { if ($k>0) { $st.=" and "; }; $t_student_id = $data['student_id']; $st.=$t_student_FUN = $data['student_full_name']; $k++; }; echo $st.""; }; } else { session_destroy(); redirect(); }; ?>
Kids Monitoring system is a website that help parents to keep track of their childern performance by viewing their grades and attendance rate or contacting their teachers by sending a message.