[insert_php]
if(isset($_POST[‘check’]))
{
$pin = $_POST[‘pin’];
$set = $_POST[‘classof’];
//connect and send reg details
$con = mysqli_connect(“localhost”, “conooorg_saly”, “{{Ssgkk4}}”);
$db = mysqli_select_db($con, “conooorg_nursing”);
$q = “select * from admissionlist where examno=’$pin’ and session=’$set’ limit 1”;
$r = mysqli_query($con, $q);
if($r)
{
$xx = mysqli_num_rows($r);
if($xx ==1)
{
//found
$row = mysqli_fetch_array($r);
$html = “”;
$html .= “
Congratulations “.strtoupper($row[‘firstname’]).” “.strtoupper($row[‘middlename’]).” “.strtoupper($row[‘surname’]).”, haven passed the college’s entrance examination and admission interview, you have been offered provisional admission into UEC COLLEGE OF NURSING, OCHADAMU for National Diploma in General Nursing for “.$row[‘session’].” academic session.
“;
$html .=”
Kindly pay the sum of Thirty Thousand Naira (N30,000) into the following account details as acceptance fee within two weeks of the release of the admission list.
Bank Name: UNION BANK
Account Name: UEC COLLEGE OF NURSING, OCHADAMU
Account Number: 0150055393
NOTE
- Use your EXAMINATION NUMBER (PIN) as depositor’s name at the bank e.g. “.strtoupper($row[‘examno’]).” “.strtoupper($row[‘firstname’]).” “.strtoupper($row[‘middlename’]).” “.strtoupper($row[‘surname’]).”
- Acceptance Fee is not refundable
- Send the evidence of payment to registration@ueccono.org or WhatsApp: 08058840779.
- For enquiries please call 08058840779/08073228306
- Visit the College website for admission letter, acceptance letter, confidential report (2 copies), etc after 24 hours.
- The countdown begins 18th September and ends on the 2nd October 2024, after which the admission list will be terminated.
Congratulations!
IDAKWO ESTHER
Registrar”;
echo $html;
} else {
//
Final list for the year has been released. Better luck next time.
echo “Admission List.
Your admission status is still pending, check back when 2nd batch is released.
Steps to Check your admission status
- Enter your Examination Number
- Select your Session
- Click ‘Check Admission Status’ menu to proceed
“;
echo “
“;
}
} else { echo “…”.mysqli_error($con); }
} else {
echo “Admission List.
Steps to Check your admission status
- Enter your Examination Number
- Select your Session
- Click ‘Check Admission Status’ menu to proceed
“;
echo “
“;
}
[/insert_php]