while($row=mysql_fetch_array($result))
{
echo "<td>".$row['status']."</td>";
echo "<td><a href='book.php?id='".$row['id'].">Book</a></td>";
}
在 book.php 页面中,我想获取在 url 中解析的 id="something" 的东西。有人可以帮助我吗?
书本.php
<?php
$id=$_GET['id']; // this is not right
echo $id;
?>