所以我做了我的第一個數據庫在線。我用phpmyadmin,我創建了表和用戶。
現在我想在我的網站的某個頁面上顯示該表格,並且可以讓用戶從該網站編輯數據庫。
我的問題是數據庫無法正常工作:它沒有連接。我不知道該怎麼做。
我的數據庫稱爲letstenf_santi和我的表passeggeri。 這是我試圖用來在網站上顯示錶格的代碼。MySQL似乎沒有工作
<?php
//establishing connection
mysql_connect('localhost', 'root', '');
//selecting a database
mysql_select_db('letstenf_santi');
$sql = 'SELECT * FROM `letstenf_santi`.`passeggeri`';
$records=mysql_query($sql);
?>
<html>
<head>
<title>mostra</title>
</head>
<body>
<table width="300" border="1" cellpadding="10" cellspacing="1">
<tr>
<th>id pass</th>
<th>nome</th>
<th>eta</th>
<th>sesso</th>
</tr>
<?php
while($pass=mysql_fetch_assoc($records)){
echo "<tr>";
echo "<td>".$pass['idpasseggero']."</td>";
echo "<td>".$pass['nome']."</td>";
echo "<td>".$pass['eta']."</td>";
echo "<td>".$pass['sesso']."</td>";
echo "</tr>";
}
?>
</table>
</body>
</html>
棄用語法檢測 –
什麼是你得到的錯誤? –
無。它只是不起作用。我不知道該怎麼辦 – gab