我是新來的PHP,我試着解決這個很多次,但我不能。 這是我的php代碼 有人可以幫助我,這應該是一個PHP專家很容易。在PHP中的HTML表錯誤
<?php
require_once 'connector.php';
$result = mysql_query('SELECT * FROM highscores ORDER BY score DESC');
$username = mysql_query('SELECT username FROM users WHERE id in(SELECT user_id FROM highscores)');
echo"<html>
<head>
<title>Highscores</title>
</head>
<body>
<table border='1'>
<tr>
<th>user</th>
<th>score</th>
<th>Date</th>
</tr>
";
while ($name = mysql_fetch_array($username))
{
echo "<tr>
<td>" . $name ['username'] . "</td>";
}
while($row = mysql_fetch_array($result))
{
echo"
<td>" . $row ['score'] . "</td>
<td>" . $row ['date'] . "</td>
</tr>";
}
echo"
</table>
</body>
</html>
";
代替執行2個查詢試試,看看你是否能與一個使用連接 –
做請儘量描述,你的挑戰是和顯示你已經嘗試解決它。還要描述,你想達到的結果是什麼。對於想要幫助的人來說,通過遵循外部鏈接總是很難首先找出問題;-) –