Viewing file: umAddService.php (1.89 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?
include_once("pagebody.php");
pageHeader();
$pageTitle="เพิ่มบริการ";
?>
<table width=100% class="pageTitleBgColor" align="center">
<tr><td align=center><? echo $pageTitle; ?></td></tr>
</table>
<!--your code here-------------------------------------------------------------------------->
<?
include_once("clsUmService.php");
$oC = new clsConnection($GLOBALS['HOST'], $GLOBALS['DB'], $GLOBALS['USER'], $GLOBALS['PASSWORD']);
$oSv = new umservice($oC);
$oSv->RSumservice();
?>
<p>
<form name="form1" method=post action="processUmService.php">
<input type="hidden"name="method" value="add">
<input type="hidden" name="SvID" readonly>
<table border="0" align="center" cellspacing="1" class="TableBodyBgColor" cellpadding="2">
<tr class="TableRowBgColor">
<td>ชื่อบริการ(ท)</td>
<td><input type="text" name="SvNameT" size="30" ></td>
</tr>
<tr class="TableRowBgColor">
<td>ชื่อบริการ(E)</td>
<td><input type="text" name="SvNameE" size="30" ></td>
</tr>
<tr class="TableRowBgColor">
<td>URL</td>
<td><input type="text" name="SvURL" size="50" ></td>
</tr>
<tr class="TableRowBgColor">
<td>ไอคอน</td>
<td><input type="text" name="SvIcon" size="50" ></td>
</tr>
<tr class="TableRowBgColor">
<td> </td>
<td><input type="button" value="บันทึก" onclick="doValidate(document.form1);"></td>
</tr>
</table>
</form>
</p>
<!--------------------------------------------------------------------->
<?
$oSv->Close();
$oC->Disconnect();
pageFooter();
?>
<!--------------------------------------------------------------------->
<!--put javascript here-->
<script language="javascript">
function doValidate(f){
if (IsEmpty(f.SvNameT, "กรุณาป้อนชื่อบริการ(ท)")) return 0;
if (IsEmpty(f.SvNameE, "กรุณาป้อนชื่อบริการ(E)")) return 0;
if (IsEmpty(f.SvURL, "กรุณาป้อน URL")) return 0;
if (IsEmpty(f.SvIcon, "กรุณาป้อนแฟ้มไอคอน")) return 0;
f.submit();
}
</script>
</script>
|