我正在使用以下
重定向php页面<a href='invoice_details.php?ppid=".$row['sno']."'..
但我希望将其重定向到另一个条件 可以这样做吗
<a href='invoice_details.php?ppid=".$row['sno']." and 'invoice_details.php?pinv=".$row['invno']."'
答案 0 :(得分:1)
您可以使用:
<a href="yourscript.php?variable1=one&variable2=two&variable3=three">Link</a>
然后在php:
$variable1 = $_GET['variable1']; // one
$variable2 = $_GET['variable2']; // two
$variable3 = $_GET['variable3']; // three
在你的例子中:
<a href='invoice_details.php?ppid=".$row['sno']."&pinv=".$row['invno']."'>link</a>
以下是关于&
符号的一点说明:Encoding issue, coverting & to & for html using php
最好用实体&
写简单&
。
关于get的更多文档:http://php.net/manual/en/reserved.variables.get.php。 请记得对您的获取值进行一些检查,而不是直接在网站上保存/发布,因为这可能会产生一些安全问题。
答案 1 :(得分:0)
用户amerpsand将参数添加到您的网址:
<a href='invoice_details.php?ppid=".$row['sno']."&pinv=".$row['invno']."'....