<?php $HOST_NAME = "localhost"; $DB_NAME = "test"; $CHAR_SET = "charset=utf8"; $USERNAME = "root"; $PASSWORD = ""; $connect = new PDO('mysql:host='.$HOST_NAME.';dbname='.$DB_NAME.';'.$CHAR_SET,$USERNAME,$PASSWORD); function fill_unit_select_box($connect) { $output = ''; $query = "SELECT * FROM tbl_order_items GROUP BY item_date ASC"; $statement = $connect->prepare($query); $statement->execute(); $result = $statement->fetchAll(); foreach($result as $row) { $output .= '<option value="'.$row["item_date"].'">'.$row["item_date"].'</option>'; } return $output; } ?> <!DOCTYPE html> <html lang="en"> <head> <title>ตรวจสอบย้อนหลัง</title> <meta charset="UTF-8"> <meta name="description" content=""> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>ตรวจสอบย้อนหลัง</title> </head> <body> <div> <table id="item_table"> <tr> <th> <select name="item_date" class="form-control item_date"> <option value="">กรุณาเลือกวันที่</option> <?php echo fill_unit_select_box($connect); ?> </select> <td> <input type="submit" name="submit" value="ตกลง"/> </td> </th> </tr> </table> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง