[insert_php]
if(isset($_POST[‘check’]))
{
extract($_POST);
//connect and send reg details
$con = mysqli_connect(“localhost”, “conooorg_saly”, “{{Ssgkk4}}”);
$db = mysqli_select_db($con, “conooorg_nursing”);
//chk result
$q = “select * from semester_result where regnumber=’$examno’ AND password=’$password’ AND classof=’$classof’ AND semester=’$semester’ AND myset=’$myset’ limit 1”;
$r = mysqli_query($con, $q);
$xp = mysqli_num_rows($r);
if($xp!=0)
{
$row = mysqli_fetch_array($r);
extract($row);
echo ‘
RESULT FOR ‘.$myyear.’ YEAR ‘.$semester.’ SEMESTER EXAMINATION
‘.$classof.’ACADEMIC SESSION
‘;
echo ‘
‘;echo ”;
echo ”;
echo ‘
| NAME: | ‘;
echo “$studentname |
| REGISTRATION NUMBER: | ‘;
echo “$regnumber |
“;
echo ‘
| SN | COURSE | NPTS (100%) |
MID (20%) |
NPTS (80%) |
TOTAL |
|---|---|---|---|---|---|
| 1 | ANATOMY AND PHYSIOLOGY | ‘. number_format($anatphy_100, 2).’ | ‘. number_format($anatphy_20, 2).’ | ‘. number_format($anatphy_80, 2).’ | ‘. number_format($anatphy_total, 2).’ |
| 2 | NUTRITION | ‘. number_format($nut_100, 2).’ | ‘. number_format($nut_20, 2).’ | ‘. number_format($nut_80, 2).’ | ‘. number_format($nut_total, 2).’ |
| 3 | ENGLISH LANGUAGE | ‘. number_format($eng_100, 2).’ | ‘. number_format($eng_20, 2).’ | ‘. number_format($eng_80, 2).’ | ‘. number_format($eng_total, 2).’ |
| 4 | MICROBIOLOGY | ‘. number_format($mic_100, 2).’ | ‘. number_format($mic_20, 2).’ | ‘. number_format($mic_80, 2).’ | ‘.number_format($mic_total, 2).’ |
| 5 | SOCIOLOGY | ‘. number_format($soc_100, 2).’ | ‘. number_format($soc_20, 2).’ | ‘. number_format($soc_80, 2).’ | ‘. number_format($soc_total, 2).’ |
| 6 | APPLIED SCIENCE | ‘. number_format($appsci_100, 2).’ | ‘. number_format($appsci_20, 2).’ | ‘. number_format($appsci_80, 2).’ | ‘. number_format($appsci_total, 2).’ |
| 7 | FOUNDATION OF NURSING AND EMERGENCY | ‘. number_format($fne_100, 2).’ | ‘. number_format($fne_20, 2).’ | ‘. number_format($fne_80, 2).’ | ‘. number_format($fne_total, 2).’ |
| 8 | PRIMARY HEALTH CARE | ‘. number_format($phc_100, 2).’ | ‘. number_format($phc_20, 2).’ | ‘. number_format($phc_80, 2).’ | ‘. number_format($phc_total, 2).’ |
| 9 | PSYCHOLOGY | ‘. number_format($psy_100, 2).’ | ‘. number_format($psy_20, 2).’ | ‘. number_format($psy_80, 2).’ | ‘. number_format($psy_total, 2).’ |
| 10 | PRACTICAL | ‘. number_format($practical, 2).’ | ‘. number_format($practical, 2).’ | ||
| REMARK | ‘;
echo “$remark $note |
||||
‘;
echo ‘
NOTE:
- Candidates with 1, 2, 3, 4 and 5 REF should prepare to write the exam on the 12TH – 17TH MAY, 2025
- Candidates without REF should continue to the next block of their study and to pay a clearance fee of N10,000 to the College Statutory account. UEC COLLEGE OF NURSING, STATUTORY, 1015288427 – ZENITH BANK
- Candidates with 1 to 5 REFS are to pay N5000 to account department in CASH for the resit(s) examination latest 13th May, 2025 to the college union bank account details: U E C COLLEGE OF NURSING, OCHADAMU- COLLEGE FEE 0150055393
‘;
} else {
echo ‘E-RESULT CHECKER
Result not found
Steps to print result sheet
-
- Enter your Registration Number
- Enter your Password, provided by management
- Select your Session
- Select your Set
- Select the semester
‘;
echo ‘
‘;
}
//post not
} else {
echo ‘E-RESULT SHEET
Steps to print result sheet
-
-
- Enter your Registration Number
- Enter your Password, provided by management
- Select your Session
- Select your Set
- Select the semester
- Click “Check Result” menu to proceed
-
‘;
echo ‘
‘;
}
[/insert_php]