Viewing file: umEditService.php (2.01 KB) -rwxr-xr-x 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->SearchByKey($SvID); $oSv->GetRecord(); ?> <br> <form name="form1" method=post action="processUmService.php"> <input type="hidden"name="method" value="edit"> <input type="hidden" name="SvID" readonly value="<?=$oSv->SvID;?>" > <table border="0" align="center" cellspacing="1" class="TableBodyBgColor" cellpadding="2"> <tr class="TableRowBgColor"> <td>ชื่อบริการ(ท)</td> <td><input type="text" name="SvNameT" size="30" value="<?=$oSv->SvNameT;?>" ></td> </tr> <tr class="TableRowBgColor"> <td>ชื่อบริการ(E)</td> <td><input type="text" name="SvNameE" size="30" value="<?=$oSv->SvNameE;?>" ></td> </tr> <tr class="TableRowBgColor"> <td>URL</td> <td><input type="text" name="SvURL" size="50" value="<?=$oSv->SvURL;?>"</td> </tr> <tr class="TableRowBgColor"> <td>ไอคอน</td> <td><input type="text" name="SvIcon" size="50" value="<?=$oSv->SvIcon;?>"> </td> </tr> <tr class="TableRowBgColor"> <td> </td> <td><? echo $oU->CRUD("<input type=\"button\" value=\"บันทึก\" onclick=\"doValidate(document.form1);\">","u") ?></td> </tr> </table> </form> </p> <!---------------------------------------------------------------------> <? $oSv->Close(); 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>
|