₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,326,959 members, 8,428,822 topics. Date: Thursday, 18 June 2026 at 03:17 AM

Toggle theme

Ckizen's Posts

Nairaland ForumCkizen's ProfileCkizen's Posts

1 (of 1 pages)

FamilyRe: Have You Checked Your Microwave For Radiation Lately? by ckizen(m): 4:36pm On Aug 21, 2015
This is a great info. Pls read and share.
WebmastersRe: Please Help..my Result Checker App Is Having Problem by ckizen(op): 12:12pm On Mar 14, 2015
THIS IS IS SOURCE CODE TO CHECK IT.

<?php
include("Connection/connection.php"wink;
session_start();
$pin =$_POST['tCpin'];
$session =$_POST['session'];
$term = $_POST['term'];
$class = $_POST['class'];



$sql="SELECT * FROM card_pin WHERE PIN ='$pin' and STATUS ='UNUSED' ";
$result=mysql_query($sql);


// Mysql_num_row is counting table row
$count=mysql_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row

$_SESSION['pin'] = $pin;
$_SESSION['session'] = $session;
$_SESSION['term'] = $term;
$_SESSION['class'] = $class;


if($count==1){
header("location:Students_in_a_class.php"wink;
}
else {
header("location:No_student_found.php"wink;
}
?>
WebmastersRe: Please Help..my Result Checker App Is Having Problem by ckizen(op): 9:25am On Mar 14, 2015
ckizen:
Pls I have a Result Checker application developed with PHP, but my problem now is how to code the pin so that a student can use the same PIN for the entire session (first, second and third term) . With a maximium of 10 usage each term. Thanks
. Pls can someone help me out with the right code??
WebmastersPlease Help..my Result Checker App Is Having Problem by ckizen(op): 8:39am On Mar 14, 2015
Pls I have a Result Checker application developed with PHP, but my problem now is how to code the pin so that a student can use the same PIN for the entire session (first, second and third term) . With a maximium of 10 usage each term. Thanks

1 (of 1 pages)