1

我正在开发程序PHP。现在我想使用 '&' 字符传递整个字符串$_GET。但是我遇到了一些问题,例如它从字符“&”中剪切字符串,我使用的代码如下

$customer="Mahindra & Mahindra PVT.LTD."
<a href="main.php?cust=". $customer."">Procceed</a>

并在第二页中使用代码:声明新的可验证性,然后在其中传递可验证的 url 并打印变量。

$c=$_GET['customer'];
echo $c;

它的输出是“ Hahindra”,但我想得到整个字符串。

4

1 回答 1

4
<?php $customer="Mahindra & Mahindra PVT.LTD.";
echo '<a href="main.php?cust="'.urlencode($customer).'">Procceed</a>'; ?>
于 2013-08-16T11:33:17.713 回答