我有一个包含以下字段的清真寺数据库:mosque_id、mosque_name、prefecture、address、postal_code、website、email1、phone1。我要做的是在表单中显示第一个清真寺(mosque_id=1)的信息,当我点击“下一步”时,将显示第二个清真寺(mosque_id=2)的信息。
到目前为止,我已经能够使用 mosque_id 来选择一整行并显示信息,但我一直在努力寻找一种方法来切换到下一个。我对 PHP 和 MYSQL 很陌生,任何帮助将不胜感激。
<?
$mosque_id = 1;
$result = mysql_query("SELECT * FROM Mosque WHERE mosque_id='$mosque_id'");
$row = mysql_fetch_assoc($result);
?>
<form action="insert.php" method="post">
Mosque Name: <?php print('<input type="text" name="firstname" value="' . $row['mosque_name'] . '"/><br>')?>
Prefecture: <?php print('<input type="text" name="firstname" value="' . $row['prefecture'] . '"/><br>')?>
Address: <?php print('<input type="text" value="' . $row['address'] . '"/><br>')?>
Postal Code: <?php print('<input type="text" value="' . $row['postal_code'] . '"/><br>')?>
Website: <?php print('<input type="text" value="' . $row['website'] . '"/><br>')?>
Email 1: <?php print('<input type="text" value="' . $row['email1'] . '"/><br>')?>
Contact number 1: <?php print('<input type="text" value="' . $row['phone1'] . '"/><br>')?>
<input type="button" value="Next Mosque" onclick=""/>
</form>