Current File : /home/inlingua/www/noida/icentex_noida/iNDEED/ingl_designation.form.php |
<?php
// Include header
include "header_indeed.php";
echo $succFailMesg;
// Show result of a form submission?
if ($showResult == "Y")
{ echo "<br><a href='ingl_designation.select.php'>Back</a><br>";
// Include footer
include "footer_indeed.php";
return;
}
?>
<script language="javascript">
<!--
function validate()
{ if (document.frm.designation.value=="")
{ alert("Designation cannot be blank. Please enter it.");
document.frm.designation.focus(); return false;
}
return true;
}
-->
</script>
<form method='post' name="frm" action='ingl_designation.main.php' onsubmit="return validate()">
<input type='hidden' name='recNo' value="<?php echo $dbObject->getDbField('recNo');?>">
<input type='hidden' name='kV' value="<?php echo $_REQUEST['kV'];?>">
<table boder='1' class='pa-nor'>
<tr valign='top'><td>Designation</td><td><input type='text' name='designation' value="<?php echo $dbObject->getDbField('designation');?>" size='20' maxlength='250'></td></tr>
<tr><td colspan='2'><input type='submit' name='aC' value='<?php echo $currentMode;?>'></td></tr>
</table>
</form>
<?php
// Include footer
include "footer_indeed.php";
?>