我想使用PHP从URL获取值,我可以使用以下代码,它在localhost中工作,但不在生产服务器中工作。
sample.php
<a href="report.php?id=<?php $a=5; echo $a; ?>">View</a>
report.php
<?php
$id=$_GET['id'];
echo $id;
?>
此代码在localhost中输出5,但在生产服务器中不提供值。
答案 0 :(得分:0)
在我的服务器测试中,localhost和server中的out都是5。我认为问题主要是由你的server / php config引起的。
答案 1 :(得分:0)
试试这个:
<a href="report.php?id=5">View</a>