次のフィールドを持つモスクのデータベースがあります:mosque_id、mosque_name、都道府県、住所、郵便番号、ウェブサイト、email1、phone1。最初のモスク(mosque_id = 1)の情報をフォームに表示し、「次へ」をクリックすると、2番目のモスク(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>