PHP+MySqli EP.2 การเรียกแสดงข้อมูล จาก Database
PHP+MySqli EP.2 การเรียกแสดงข้อมูล จาก Database
ด้วย PHP+MySqli โดยตรง
ไฟล์หน้า showe.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
<?php include('Connections/consqli.php');?> <!--เชื่อมต่อไฟล์connect--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <br /> <br /> <br /> <br /> <table align="center" width="50%" border="1" cellspacing="1" cellpadding="1"> <tr> <td rowspan="2" align="center">id</td> <td rowspan="2" align="center">user</td> <td rowspan="2" align="center">img</td> <td colspan="2" align="center">เพิ่ม</td> </tr> <tr> <td align="center">แก้ไข</td> <td align="center">ลบ</td> </tr> <?php //คำสั่งให้เลือกข้อมูลจาก TABLE ชื่อ tbl_member โดยเรียงจาก member_id และให้เรียงลำดับจากมากไปน้อยคือ DESC และ เปิดดู error เวลามีปัญหา $query = "SELECT * FROM teble1 ORDER BY id DESC" or die("Error:" . mysqli_error()); //ประกาศตัวแปร sqli $result = mysqli_query($con, $query); //สร้างตัวแปร $row มารับค่าจากการ fetch array while($row = mysqli_fetch_array($result)) { ?> <tr> <td align="center"><?php echo $row['id'];?></td> <!--เรียกตัวแปรพร้อมฟิวที่จะให้แสดงคือid--> <td align="center"><?php echo $row['name'];?></td> <!--เรียกตัวแปรพร้อมฟิวที่จะให้แสดงคือname--> <td align="center"><img src="img/<?php echo $row['img']; ?>" width="40" height="40" /></td> <!--เรียกตัวแปรพร้อมฟิวที่จะให้แสดงคือimg--> <td align="center"><a href="edit.php?id=<?php echo $row['id']; ?>">แก้ไข</a></td> <!--กรณีส่งค่าไปแก้ไข--> <td align="center"><a href='del.php?<?php echo $row['id']; ?>' onclick="return confirm('Do you want to delete this record? !!!')">ลบ</a></td> <!--กรณีส่งค่าไปลบ--> </tr> <?php } mysqli_close($con); ?> </table> </body> </html> |