<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> </head> <body> <?php $name=Array("Nike1", "Nike2", "Nike3", "Nike4"); $price=Array("300","500","100","400"); ?> <h1>รายการสินค้า</h1> <form action="" method="post"> <table> <tr bgcolor="#6699ff"> <th width="50px">No.</th> <th width="200px">Name</th> <th width="50px">Price</th> <th width="50px">Number</th> <th width="50px">Select</th> </tr> <?php $r=0; while($r<count($name)){ ?> <tr bgcolor="<?=($r%2)?'#ccffcc':'#00ffcc'?>"> <td align="center"><?=$r+1?></td> <td><?=$name[$r]?></td> <td><?=$price[$r]?></td> <td align="center"><input type="textbox"></td> <td align="center"><input type="checkbox" name="sel[]" value="<?=$name[$r]?>"></td> </tr> <?$r++;}?> </table> <input type="submit" value="OK" /> </form> <? if(isset($_POST["sel"])){ ?> <h1>สินค้าที่เลือก</h1> <table> <tr bgcolor="#6699ff"> <th width="50px">No.</th> <th align="center" width="200px">Name</th> <th align="center" width="50px">Price</th> </tr> <?php $r=1; foreach($_POST["sel"] as $n){ ?> <tr bgcolor="<?=($r%2)?'#ccffcc':'#00ffcc'?>"> <td align="center"><?=$r?></td> <td><?=$n?></td> <td><?=$price[$r]?></td> </tr> <?$r++;}?> </table> <?}?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง