-1

我有一个简单的 url,只是想在其中回显一个变量,但它不起作用。

这是代码

<?php    
$name = "mysite";    
echo "<a href= 'BusinessDisplay.php?address = $name'> hello </a>";    
?>

<?php     
echo $_GET['address'];    
?>
4

1 回答 1

5

这个间距是错误的。

"<a href= 'BusinessDisplay.php?address = $name'> hello </a>";
--------------------------------------^-^
于 2012-11-20T14:48:44.690 回答