标签: php variables uri undefined
我想要做的是通过uri在我的页面上回显$ test的值。我知道我做错了什么,但我无法弄清楚是什么。
代码:
<?php echo $test?>
URL:
本地主机/ testMap / test.php的?测试=喂
答案 0 :(得分:0)
您可以使用get获取url的值,并将其存储在变量$test中,然后将其回显。
$test
$test = $_GET['test'];