所以我有两个php文件第一个
<?php
include"db.inc.php";//database connection
$order = "SELECT * FROM notes";
$result = mysql_query($order);
while ($row=mysql_fetch_array($result)){
echo ("<tr><td>$row[Name]</td>");
echo ("<td>$row[Comment]</td>");
echo ("<td>$row[Timestamp]</td>");
echo ("<td><a href=\"edit_form.php?id=$row[Timestamp]\">Edit</a></td></tr>");
}
?>
第二个。
<?php
include "db.inc.php";//database connection
$order = "SELECT * FROM note
where Timestamp='id'";
$result = mysql_query($order);
$row = mysql_fetch_array($result);
?>
第一个文件中的 is 和id=$row[Timestamp]以及Timestamp='id'";我如何让第二个文件中的 id 值等于第一个文件中的 id。谢谢