あなたはreの一部であるidを使うことができますMySQLのテーブルから得コード、そして...今度はテーブル内のレコード全体をフェッチ2ページ目に
PAGE 1 GETリクエストを送信します。
/**
* ..Establish the connection to MySQL, Selects Database..
* ..Fetch few columns of all records..
*/
$result = mysql_query("SELECT id,firstname,lastname FROM records_table");
//Draw a table to hold the records
echo "<table>";
echo "<tr><th>Firstname</th><th>Lastname</th><th>Email</th><tr>";
while($row = mysql_fetch_assoc($result)){
echo "<tr>";
//Using the id of a record to create ahref link thats sends a get data to the second page
echo "<td><a href='second.php?id=".$row['id']."'>".$row['firstname']."</a></td>";
echo "<td>".$row['lastname']."</td>";
echo "<td>".$row['email']."</td>";
echo "</tr>";
}
echo "</table>";
PAGE 2(second.phpを) :
特定のレコードID(mysqlレコードID)をクエリ文字列でエンコードされた形式で渡し、次のページでクエリ文字列の値を取得する '$ _GET 'OR' $ _REQUEST'を利用します。その後、その値をデコードし、クエリを使用してレコードを取得します。 – Narayan