Viewing file: addHSectionTQ.php (3.17 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once "template.php";
showHeader();
include_once "../class/clsSectionTQ.php";
?>
<script language="javascript">
function checkFormat(){
if(document.frm.topicSectionTQ.value ==""){
alert("กรุณากรอกคำอธิบายส่วนของแบบประเมิน !");
document.frm.topicSectionTQ.focus();
return false;
}
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<link href="../source/style.css" rel="stylesheet" type="text/css">
<form name="frm" method="post" action="processSectionTQ.php">
<br>
<table width=90% align=center>
<tr><td>
<fieldset>
<legend><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>"><a href="showListAss.php">รายการแบบประเมิน</a> <img src="../picture/ico3.gif" width="10" height="10" border="0" align="absmiddle"><a href="createForm.php?assid=<? echo $assid ?>"> สร้างฟอร์มแบบประเมิน</a> <img src="../picture/ico3.gif" width="10" height="10" border="0" align="absmiddle"> กำหนดคำอธิบายการตอบของส่วนนี้ (คำถามแบบปลายเปิด)</font></legend>
<p> <br>
<br>
<?
$oC = new clsConnection($GLOBALS['HOST'], $GLOBALS['DB_EASS'], $GLOBALS['USER_EASS'], $GLOBALS['PASSWORD_EASS']);
$oSTQ= new SectionTQ($oC);
$oSTQ->RSSectionTQAll($assid,$indexTQid);
$oSTQ->GetRecord();
//echo"indexTQid = ".$indexTQid;
//echo " oSRQ->SectionTQid = ".$oSRQ->sectionTQid;
?>
<input type="hidden" name="method" value="edit">
<input type="hidden" name="indexSeq" value="<?=$indexSeq;?>">
<input type="hidden" name="assid" value="<?=$assid?>">
<input type="hidden" name="sectionTQid" value="<?=$oSTQ->sectionTQid?>">
<input type="hidden" name="sequenceTQ" value="<?=$oSTQ->sequenceTQ?>">
<table width="64%" border="0" align="center">
<tr>
<td height="22" colspan="2" align="center" class="colinput1"><strong>กำหนดคำอธิบายการตอบของ
: <u>ส่วนที่ <? echo $indexSeq; ?></u></strong> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td width="47%" class="colinput4"> เพิ่มคำอธิบายส่วนของแบบประเมิน <font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"];?>">*</font></td>
<td width="53%"><textarea name="topicSectionTQ" cols="40" rows="4"><?=$oSTQ->topicSectionTQ;?></textarea></td>
</tr>
<tr>
<td height="22" colspan="2"> </td>
</tr>
<tr>
<td colspan="2"><div align="center"> <br>
<input type="submit" name="add" value="บันทึก" onClick="return checkFormat();">
<input type="reset" name="clear" value="เคลียร์ข้อมูล">
<input type="button" name="cancel" value="ยกเลิก" onClick="location.href = 'createForm.php?assid=<? echo $assid ?>'">
</div></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</fieldset><br><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"];?>"><b>หมายเหตุ : </b>* หมายถึง ต้องกรอกข้อมูลให้สมบูรณ์</font>
</td>
</tr>
</table>
</form>
<? showFooter(); ?>
|