HTML查詢MYSQL數(shù)據(jù)庫并輸出
今天我們來學(xué)習(xí)如何使用HTML查詢MYSQL數(shù)據(jù)庫并將數(shù)據(jù)輸出到頁面上。我們先來看一下代碼:
<html> <head> <title>HTML查詢MYSQL數(shù)據(jù)庫并輸出</title> </head> <body> <?php $conn = new mysqli('localhost', 'username', 'password', 'database'); if($conn->connect_error){ die('連接錯誤:'.$conn->connect_error); } $sql = 'SELECT * FROM table'; $result = $conn->query($sql); if($result->num_rows > 0){ while($row = $result->fetch_assoc()){ echo '<div>'; echo '<p>'.$row['column1'].'</p>'; echo '<p>'.$row['column2'].'</p>'; echo '</div>'; } }else{ echo '沒有數(shù)據(jù)'; } $conn->close(); ?> </body> </html>
上面的代碼中,我們先使用mysqli函數(shù)連接MYSQL數(shù)據(jù)庫,然后通過SQL語句查詢數(shù)據(jù)。如果查詢結(jié)果大于0,我們就使用while循環(huán)將數(shù)據(jù)取出來,并使用HTML標(biāo)簽輸出到頁面上。如果查詢結(jié)果等于0,我們就輸出“沒有數(shù)據(jù)”。最后,我們關(guān)閉數(shù)據(jù)庫連接。
當(dāng)我們將上面的代碼保存為一個.php文件并運(yùn)行時(shí),就可以看到從MYSQL數(shù)據(jù)庫中查詢出來的數(shù)據(jù)輸出到了頁面上。
以上就是使用HTML查詢MYSQL數(shù)據(jù)庫并輸出的簡單介紹,希望對大家有所幫助。