| Current Path : /var/www/html/mmishra/iws8/html/indem/ |
| Current File : /var/www/html/mmishra/iws8/html/indem/acardindex3.php |
<?php
//$id = $_REQUEST["id"];
if ($_POST["submit"] == "FIND") {
$msg = "";
$fullname = $_POST["fullname"];
if (!$fullname) $msg = "Please enter your name";
$dob = $_POST["dob"];
if (!$dob) $msg = "Please enter your correct date of birth";
// $id = $_POST["id"];
// if (!$id) $msg = "Please enter your correct Application ID";
if ($msg) {
// goto msge;
echo "<center><blink><font size=4px color='red'>$msg</font></blink></center>";
} else {
// header("Location: admitcard.php?id=$id&dob=$dob&fullname=$fullname");
header("Location: admitcard3.php?dob=$dob&fullname=$fullname");
}
}
include "headeracard.inc";
$tbl = 'tbl_final_alloted';
echo "
<table width='100%'>
<tr><td valign=top align=center>
<table>
<tr><td>Fullname</td><td> <input type='text' onkeypress='return isCharacterKey(event)' name='fullname' size='30' maxlength='35' value='$fullname'><font color='red'>*</font> <font size=-1> Please enter your Fullname</font></td></tr>
<tr><td>Date of Birth</td><td><input type='text' onkeypress='return isDateKey(event)' name='dob' size='30' maxlength='35' value='$dob'><font color='red'>*</font> (DD/MM/YYYY)
<!-- <tr><td>Appliaction No.</td><td> <input type='text' onkeypress='return isNumberKey(event)' name='id' size='30' maxlength='35' value='$id'><font color='red'>*</font></td></tr> -->
<tr><td></td><td><input type='submit' name='submit' value='FIND'></td></tr>
<tr><td colspan=2><br></td></tr>
<tr><td></td><td><b><a href='SpecimenOMRSheet.pdf'>Click here to see The Specimen copy of OMR Sheet</a></b></td></tr>
<tr><td colspan=2><b></b></td></tr>
<tr><td align=right><img src='blink.gif' /></td><td><b><a href='screenedlist.pdf'><font color='red'>Click here to see The complete list of Screened Candidates called for written test</font></a></b></td></tr>
</table>
<font color='red'>*</font><font size=-1>Required</font>
</td></tr>
</table>
<br>
";
include "footer.inc";
?>