Student Result
include("conn.php");
if(isset($_POST['result'])){
$output=array();
$regnmbr=$_POST['regnmbr'];
$sql="SELECT * FROM `AppliedForm` where registration_no='".$regnmbr."'";
$query=$conn->query($sql);
$row=$query->fetch_assoc();
$sql_fetch="select * from Result where Enrollmnet_no='".$row['id']."' ";
$query_fetch=$conn->query($sql_fetch);
$row_fetch=$query_fetch->fetch_assoc();
if($row==true){
echo '';
}else{
// echo '
Result Not Update Please contact your Administration Center
';
echo '';
}
}
?>