使用_GET的PHP变量语法

时间:2014-03-05 15:36:25

标签: php string syntax-error concatenation

我有一个redirectURL,目前正在重定向到默认页面,效果很好

  $WA_redirectURL = "mypage.php";

我想插入一个可用的_GET值但是出现语法错误。这是我正在尝试的。我认为这些时期可以让我将价值纳入网址?

  $WA_redirectURL = "mypage.php?EmpNumber=". echo $_GET['EmpNumber'] .";

2 个答案:

答案 0 :(得分:8)

连接字符串时不使用echo

$WA_redirectURL = "mypage.php?EmpNumber=". echo $_GET['EmpNumber'] .";

应该是:

$WA_redirectURL = "mypage.php?EmpNumber=". $_GET['EmpNumber'];

(最后一个引用也是错误的。)

答案 1 :(得分:1)

使用echo将文本发送给用户。

如果您想要将字符串连接在一起,请使用句点加入内容。

例如:

echo "hello"; // this will print hello to the screen

$testing = "hello "."world!";

echo $testing; // this will print hello world! to the screen.