<? //session_start(); include "connect_Database.php"; $sql_class = "select * from class"; $result_class = mysql_query($sql_class); //echo $result_class; $num_col = 1; ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style type="text/css"> <!-- body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style> <script> function doclick(slot) { var sum=parseFloat(0); for(i=0;i< frm.elements.length;i++) { if(frm.elements[i].value !="") sum+=parseFloat(frm.elements[i].value); } slot.value = sum; } </script> </head> <body> <form id="frm" method="post" action="?"> <table width="47%" align="center" cellpadding="0" cellspacing="0"> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td width="97" align="left"><div align="center">ชื่อ - นามสกุล</div></td> <td width="280" align="left"> <input type="radio" name="title" value="เด็กชาย">เด็กชาย <input type="radio" name="title" value="เด็กหญิง">เด็กหญิง <input type="radio" name="title" value="นาย">นาย <input type="radio" name="title" value="นางสาว">นางสาว </td> <td width="163" align="left"><div align="left"> <input type="text" name="name"> </div></td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td width="177">ชื่อเล่น <input name="nikname" type="text" size="10"></td> <td width="165"> เพศ <input type="radio" name="sex" value="ชาย">ชาย <input type="radio" name="sex" value="หญิง">หญิง </td> <td width="226">อายุ <input name="age" type="text" size="10"></td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td width="27%">เบอร์โทร <input name="phone" type="text" size="10"></td> <td width="36%">โรงเรียน <input name="school" type="text" size="20"></td> <td width="37%">ระดับชั้น <select name='class'> <?php echo "<option value='0'>กรุณาเลือกชั้นเรียน</option>"; while($array_class = mysql_fetch_array($result_class)){ $ID_class = $array_class['ID_class']; $name_class = $array_class['name_class']; echo "<option value='".$ID_class."'>".$name_class."</option>"; } ?> </select></td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td width="19%">ชื่อผู้ปกครอง <td width="29%"><input type="radio" name="title_par" value="นาย">นาย <input type="radio" name="title_par" value="นาง"> นาง <input type="radio" name="title_par" value="นางสาว">นางสาว </td> <td width="52%"><input type="text" name="name_par"></td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td width="127" valign="top">วิชาที่เรียน</td> <td width="158" valign="top">ประถม <br> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <td width="17"> <table cellpadding="0" cellspacing="0"> <?php $sql_course = "select * from course"; $result_course = mysql_query($sql_course); for($i=0; $row = mysql_fetch_array($result_course); $i++){ if($i%$num_col == 0){ echo "<tr height='30'>"; } $name_course = $row['name_course']; $ID_course = $row['ID_course']; $ID_cl = $row['ID_cl']; if($ID_cl == 1){ echo "<td width='100%'><input type='checkbox' name='course[$i]' value='".$ID_course."'>".$name_course."</td>"; //echo "<td>ราคา : <input type='text' name='price[$i]' size='5'></td>"; $h++; } if (($i+1) % $num_col ==0){ echo "</tr>"; } } ?> </table> </td> </tr> </table> </td> <td width="255" valign="bottom"><br> <table cellpadding="0" cellspacing="0" border="0"> <? for($k=1;$k<= $h;$k++) {?> <tr height="30"> <td>ราคา : <input type='text' name='price[$i]' size='5' ></td> </tr> <? }?> </table> </td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td width="126" valign="top"></td> <td width="158" valign="top">มัธยม <br> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <td width="17"> <table cellpadding="0" cellspacing="0"> <?php $sql_course = "select * from course"; $result_course = mysql_query($sql_course); for($i=0; $row = mysql_fetch_array($result_course); $i++){ if($i%$num_col == 0){ echo "<tr height='30'>"; } $name_course = $row['name_course']; $ID_course = $row['ID_course']; $ID_cl = $row['ID_cl']; if($ID_cl == 2){ echo "<td width='100%'><input type='checkbox' name='course[$i]' value='".$ID_course."'>".$name_course."</td>"; //echo "<td>ราคา : <input type='text' name='price[$i]' size='5'></td>"; $l++; } if (($i+1) % $num_col ==0){ echo "</tr>"; } } ?> </table> </td> </tr> </table> </td> <td width="256" valign="bottom"><br> <table cellpadding="0" cellspacing="0"> <? for($k=1;$k<= $l;$k++) {?> <tr> <td height="30">ราคา : <input type='text' name='price[$i]' size='5'></td> </tr> <? }?> </table> </td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td colspan="3" align="center">ชำระค่าเรียน <input type="text" name="money" onClick="doclick(this);"> </td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td width="37%"><div align="right"> <? $sql_status = "select * from status"; $result_status = mysql_query($sql_status); while($array_status = mysql_fetch_array($result_status)){ $ID_status = $array_status['ID_status']; $name_status = $array_status['name_status']; if($ID_status == 1) {?> <input type="checkbox" name="check"><? echo $name_status?></div><? }}?></td> <td width="17%"><div align="center">วัน/เดือน/ปี</div></td> <td width="46%"><div align="left"><select name="d1" id="d1"> <? if(!isset($d1))$d1=date("d"); for($i=1;$i<=31;$i++){ echo "<option value='$i'"; if($i==$d1)echo " selected"; echo ">$i</option>";} ?> </select> <select name="m1" id="m1"> <? if(!isset($m1)) { $m1=date("m"); } ?> <option value="มกราคม"<? if($m1==1)echo "selected";?>>มกราคม</option> <option value="กุมภาพันธ์"<? if($m1==2)echo "selected";?>>กุมภาพันธ์</option> <option value="มีนาคม"<? if($m1==3)echo "selected";?>>มีนาคม</option> <option value="เมษายน"<? if($m1==4)echo "selected";?>>เมษายน</option> <option value="พฤษภาคม"<? if($m1==5)echo "selected";?>>พฤษภาคม</option> <option value="มิถุนายน"<? if($m1==6)echo "selected";?>>มิถุนายน</option> <option value="กรกฎาคม"<? if($m1==7)echo "selected";?>>กรกฎาคม</option> <option value="สิงหาคม"<? if($m1==8)echo "selected";?>>สิงหาคม</option> <option value="กันยายน"<? if($m1==9)echo "selected";?>>กันยายน</option> <option value="ตุลาคม"<? if($m1==10)echo "selected";?>>ตุลาคม</option> <option value="พฤศจิกายน"<? if($m1==11)echo "selected";?>>พฤศจิกายน</option> <option value="ธันวาคม"<? if($m1==12)echo "selected";?>>ธันวาคม</option> </select> <? if(!isset($y1)){$y1=date("Y")+543; }?> <input name="y1" type="text" id="y15" size="6" maxlength="4" value="<? echo $y1;?>"></div></td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td width="37%"><div align="right"> <? $sql_status = "select * from status"; $result_status = mysql_query($sql_status); while($array_status = mysql_fetch_array($result_status)){ $ID_status = $array_status['ID_status']; $name_status = $array_status['name_status']; if($ID_status == 2) {?> <input type="checkbox" name="check"><? echo $name_status?></div><? }}?></td> <td width="17%"><div align="center">วัน/เดือน/ปี</div></td> <td width="46%"><div align="left"><select name="d1" id="d1"> <? if(!isset($d1))$d1=date("d"); for($i=1;$i<=31;$i++){ echo "<option value='$i'"; if($i==$d1)echo " selected"; echo ">$i</option>";} ?> </select> <select name="m1" id="m1"> <? if(!isset($m1)) { $m1=date("m"); } ?> <option value="มกราคม"<? if($m1==1)echo "selected";?>>มกราคม</option> <option value="กุมภาพันธ์"<? if($m1==2)echo "selected";?>>กุมภาพันธ์</option> <option value="มีนาคม"<? if($m1==3)echo "selected";?>>มีนาคม</option> <option value="เมษายน"<? if($m1==4)echo "selected";?>>เมษายน</option> <option value="พฤษภาคม"<? if($m1==5)echo "selected";?>>พฤษภาคม</option> <option value="มิถุนายน"<? if($m1==6)echo "selected";?>>มิถุนายน</option> <option value="กรกฎาคม"<? if($m1==7)echo "selected";?>>กรกฎาคม</option> <option value="สิงหาคม"<? if($m1==8)echo "selected";?>>สิงหาคม</option> <option value="กันยายน"<? if($m1==9)echo "selected";?>>กันยายน</option> <option value="ตุลาคม"<? if($m1==10)echo "selected";?>>ตุลาคม</option> <option value="พฤศจิกายน"<? if($m1==11)echo "selected";?>>พฤศจิกายน</option> <option value="ธันวาคม"<? if($m1==12)echo "selected";?>>ธันวาคม</option> </select> <? if(!isset($y1)){$y1=date("Y")+543; }?> <input name="y1" type="text" id="y15" size="6" maxlength="4" value="<? echo $y1;?>"></div></td> </tr> </table> </td></tr> <tr><td> <table width="100%" align="center" cellpadding="0" cellspacing="0" height="50"> <tr> <td colspan="3"> <div align="center"> <input type="submit" value="บันทึก"> <input type="reset" value="ยกเลิก"> </div></td></tr> </table> </td></tr></table> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง