-1
4

1 回答 1

1

如果您想将数据传递到另一个页面,您可以以 GET 方式附加到 URL。

例如:

<a href="www.mydomain.com/show.php?img=myimage.jpg">Get Details</a>

在这里,我们将一个值传递myimage.jpgshow.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 回答