我用简单的html dom抓一些网址。网址发生了变化,因此我将它们用作这样的变量:
var URL = $('input').val();
document.getElementById("iframe").src = "proxy.php?url="+ URL;
网址将是:
proxy.php?url=http://somewebsite.com
在proxy.php中我像这样获取这个变量:
$url = $_GET['url'];
它运作良好。所以现在我想发送第二个变量,一个正在改变的div。如何将此变量发送到我的php文件“proxy.php”?我试过这样的东西,但它不起作用:
网址:
proxy.php?url=http://somewebsite.com?variable=the-variable
在我的php文件中:
$variable = $_GET['the-variable'];
答案 0 :(得分:1)
// try this. add & before variable
proxy.php?url=http://somewebsite.com&variable=the-variable
答案 1 :(得分:1)
您尝试按其值获取变量,在您的情况下,变量名称为variable
,其值为the-variable
。使用变量名称代替php文件中的值:$_GET['variable']
此外,如果您的网址中有多个变量,则必须按&
分隔它们,例如:http://host/your.php?var1=value1&var2=value2