シンプルな PHP CRUD アプリを作成していますが、次のエラーが発生します。
警告: mysql_num_rows() は、パラメーター 1 がリソースであると想定します。
<?php
$query = "select * from user";
$result = mysql_query($query);
if (mysql_num_rows($result) > 1) {
echo "<table align='center' border='1'>";
echo "<tr>";
echo "<th>Id</th>";
echo "<th>Username</th>";
echo "<th>Password</th>";
echo "</tr>";
while($row = mysql_fetch_array($result)) {
echo "<tr>";
echo "<td>".$row['id']."</td>";
echo "<td>".$row['username']."</td>";
echo "<td>".$row['password']."</td>";
echo "<td><a href='index.php?operation=edit&id=".$row['id']."&username=".$row['username']."&password=".$row['password']."'>edit</a></td>";
echo "<td><a href='index.php?operation=delete&id=".$row['id']."'>delete</a></td>";
echo "</tr>";
}
echo "</table>";
} else {
echo "<center>No Records Found!</center>";
}
?>
エラーは、そのコードの 34 行目を指しています。どんな助けでも大歓迎です!