การสร้างเว็บแสดงผลจาก MySQL โดยใช้ PHP

Dr. Pathasu Doungmala
2 min readFeb 1, 2021

--

การสร้างเว็บแสดงผลจาก MySQL โดยใช้ PHP

สิ่งที่ต้องใส่คือ “host”, “user”, “password”, “database” และ wh คือให้ใส่ table ของเรา

และข้อมูลชุดนี้คือข้อมูลใน mysql ของเราที่ต้องการแสดง

echo “<th>id</th>”;
echo “<th>id_emp</th>”;
echo “<th>name</th>”;
echo “<th>subname</th>”;
echo “<th>time_in</th>”;

และ

echo “<td>” . $row[‘id’] . “</td>”;
echo “<td>” . $row[‘id_emp’] . “</td>”;
echo “<td>” . $row[‘name’] . “</td>”;
echo “<td>” . $row[‘subname’] . “</td>”;
echo “<td>” . $row[‘time_in’] . “</td>”;

code

<?php
/* Attempt MySQL server connection. Assuming you are running MySQL
server with default setting (user ‘root’ with no password) */
$link = mysqli_connect(“host”, “user”, “password”, “database”);

// Check connection
if($link === false){
die(“ERROR: Could not connect. “ . mysqli_connect_error());
}

// Attempt select query execution
$sql = “SELECT * FROM wh”;
if($result = mysqli_query($link, $sql)){
if(mysqli_num_rows($result) > 0){
echo “<table>”;
echo “<tr>”;
echo “<th>id</th>”;
echo “<th>id_emp</th>”;
echo “<th>name</th>”;
echo “<th>subname</th>”;
echo “<th>time_in</th>”;
echo “</tr>”;
while($row = mysqli_fetch_array($result)){
echo “<tr>”;
echo “<td>” . $row[‘id’] . “</td>”;
echo “<td>” . $row[‘id_emp’] . “</td>”;
echo “<td>” . $row[‘name’] . “</td>”;
echo “<td>” . $row[‘subname’] . “</td>”;
echo “<td>” . $row[‘time_in’] . “</td>”;
echo “</tr>”;
}
echo “</table>”;
// Free result set
mysqli_free_result($result);
} else{
echo “No records matching your query were found.”;
}
} else{
echo “ERROR: Could not able to execute $sql. “ . mysqli_error($link);
}

// Close connection
mysqli_close($link);
?>

หมายเหตุท้าย:
หากคุณชอบบทความนี้อย่าลืมคลิก❤ด้านล่างเพื่อแนะนำและถ้าคุณมีคำถามใด ๆ แสดงความคิดเห็นและฉันจะพยายามอย่างดีที่สุดที่จะตอบ คุณสามารถติดตามฉันบน facebook page (https://www.facebook.com/nextsoftwarehousethailand/) และสามารถส่งอีเมลถึงฉัน

--

--

Dr. Pathasu Doungmala
Dr. Pathasu Doungmala

Written by Dr. Pathasu Doungmala

Founder of Next Software — I am working on image processing, pattern recognition and AI to help reduce working in an industry.

No responses yet