<html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <?php $objConnect = mysql_connect("localhost","root","root") or die (mysql_error()); $objDB = mysql_select_db("testcheckbox") or die("Error Connect to Database"); mysql_query("SET NAMES UTF8"); ?> <table width="600" border="1"> <tr> <th width="200">รหัส</th> <th width="200">ชื่อ</th> <th width="200">ค่าปรับ</th> </tr> <?php $strSQL = "SELECT * FROM tbcustomer"; $objQuery = mysql_query($strSQL); while($objResult = mysql_fetch_array($objQuery)){ ?> <tr> <td><?=$objResult['cu_id'];?></td> <td><?=$objResult['cu_name'];?></td> <td><a href="forfeit-save.php?cu_id=<?=$objResult['cu_id'];?>">ค่าปรับ</a></td> </tr> <?php } ?> </table> </body> </html>
<html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <?php $objConnect = mysql_connect("localhost","root","root") or die (mysql_error()); $objDB = mysql_select_db("testcheckbox") or die("Error Connect to Database"); mysql_query("SET NAMES UTF8"); ?> <form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF'];?>"> <table width="600" border="1"> <tr> <td colspan="3">รหัสลูกค้า : <?=$_GET['cu_id'];?></td> </tr> <tr> <th width="200">สิ่งของ</th> <th width="200">ราคา</th> <th width="200">จำนวน</th> </tr> <?php $i = 0; $strSQL = "SELECT * FROM tbobject ORDER BY CAST(ob_price AS SIGNED) ASC"; $objQuery = mysql_query($strSQL); while($objResult = mysql_fetch_array($objQuery)){ $i++; ?> <tr> <td><?=$objResult['ob_name'];?></td> <td><?=$objResult['ob_price'];?></td> <td> <input type="hidden" name="ob_id[]" value="<?=$objResult['ob_id'];?>"/> <input type="hidden" name="cu_id[]" value="<?=$_GET['cu_id'];?>"/> <input type="text" name="fo_amount[]" value=""/> </td> </tr> <?php } ?> <tr> <td colspan="3"> <input type="hidden" name="hdnRow" value="<?=$i;?>"/> <input type="submit" name="submit" value="Save"/> </td> </tr> </table> </form> <?php if(isset($_POST['submit'])){ for($i=0;$i<$_POST["hdnRow"];$i++) { if($_POST["fo_amount"][$i] != "") { $strSQL = " INSERT INTO tbforfeit (cu_id, ob_id, fo_amount)"; $strSQL .= " VALUES ('".$_POST['cu_id'][$i]."', '".$_POST['ob_id'][$i]."', '".$_POST['fo_amount'][$i]."')"; $objQuery = mysql_query($strSQL) or die (mysql_error()); } } echo "<script>window.location='customer.php';</script>"; } ?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง