php中怎样才能获取到上一个页面的ID值
php中怎样才能获取到上一个页面的ID值详细介绍
web中的传值是通过post get来实现的。
<a href="b.php?id=<?php echo $row_son['id']?>" target="right">
<iframe name="right" src="b.php" >
</iframe>
看你的代码。那应该是用get方式来实现的。
那在b.php中。
在第一行写上
echo $_GET['id']
就得到了a.php传过来的值。