Current File : /home/inlingua/public_html/icentex/admin_fdingl_course.form.php
<?php
// Copyright, Panalink Infotech Limited. Created on: 27-11-2010

// Include header
include "header.php";

echo $succFailMesg; 

// Show result of a form submission?
if ($showResult == "Y")
{	echo "<br><a href='ingl_course.select.php'>Back</a><br>";
	// Include footer
	include "footer.php";
	return; 
}
?>

<script language="javascript">
<!--
function validate(form) 
{	if (form.recNo.value=="")
	{	alert("recNo cannot be blank. Please enter it.");
		form.recNo.focus(); return false;
	}
	return true;
}
-->
</script>

<form method='post' action='ingl_course.main.php' onsubmit="return validate(this)">
<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>courseid</td><td><input type='text' name='courseid' value="<?php echo $dbObject->getDbField('courseid');?>" size='20' maxlength='250'></td></tr>
<tr valign='top'><td>startdate</td><td><input type='text' name='startdate' value="<?php echo $dbObject->getDbField('startdate');?>" size='10' maxlength='10'></td></tr>
<tr valign='top'><td>enddate</td><td><input type='text' name='enddate' value="<?php echo $dbObject->getDbField('enddate');?>" size='10' maxlength='10'></td></tr>
<tr valign='top'><td>branch</td><td><input type='text' name='branch' value="<?php echo $dbObject->getDbField('branch');?>" size='20' maxlength='100'></td></tr>
<tr valign='top'><td>description</td><td><input type='text' name='description' value="<?php echo $dbObject->getDbField('description');?>" 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.php";
?>