Server : Apache System : Linux profile 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64 User : apache ( 48) PHP Version : 8.0.28 Disable Function : NONE Directory : /var/www/html/mmishra/indem/webbioexam/biomedical/ |
<?php
$tbl = 'tbl_registration';
$id = $_REQUEST["id"];
$rs = mysql_query("select * from $tbl where id=$id");
while ($o = mysql_fetch_object($rs)) {
$fullname = $o->fullname;
$dob = $o->dob;
$dob1 = $o->dob;
$gender = $o->gender;
$nationality = $o->nationality;
$category = $o->category;
$fathername = $o->fathername;
$mothername = $o->mothername;
$address = $o->address;
$state = $o->state;
$pincode = $o->pincode;
$phone = $o->phone;
$fax = $o->fax;
$email = $o->email;
$txntype = $o->txntype;
$txnnumber = $o->txnnumber;
$amount = $o->amount;
$depositdate = $o->depositdate;
$bankbranch = $o->bankbranch;
$discipline12 = $o->discipline12;
$board12 = $o->board12;
$year12 = $o->year12;
$percentage12 = $o->percentage12;
$appearing12 = $o->appearing12;
$discipline10 = $o->discipline10;
$board10 = $o->board10;
$year10 = $o->year10;
$percentage10 = $o->percentage10;
$appearing10 = $o->appearing10;
$photo = $o->photo;
}
?>