php - 在 PHP 中通过用户标签将一个页面链接到另一个页面
问问题
2983 次
1 回答
1
如果您想将数据传递到另一个页面,您可以以 GET 方式附加到 URL。
例如:
<a href="www.mydomain.com/show.php?img=myimage.jpg">Get Details</a>
在这里,我们将一个值传递myimage.jpg
给show.php
页面。
因此,在show.php
页面中,您可以使用$_GET
. 例如:
<?php
$img_name = $_GET['img']; //will get the value "myimage.jpg"
//... use this data to do whatever you need
?>
于 2012-04-21T04:29:27.960 回答