在iframe中向PHP脚本添加命令行参数

时间:2012-06-10 22:35:45

标签: php html

我正在开发一个显示BART列车时间的Google Maps网络应用程序,当您点击BART工作站的图钉时,会弹出一个信息窗口,其中有一个运行iframe的php脚本,并显示时间从BART的XML feed解析。

我希望能够做的是从iframe调用PHP脚本,就像现在一样,但是添加命令行参数(我不确定这样的事情是否可能)。 到目前为止,这是我的代码。

    if(end.match(patt1))
           {    
             response.routes[0].legs[0].end_address="Colma BART station<br />"+"Upcoming trains<br />"+'<iframe src="bart1.php" frameborder="0"; width="200" scrolling="yes"    ></iframe>';
           }

那么,我可以改变“bart1.php -a foo”这样的东西而不是“bart1.php”吗? 谢谢, 阿曼达

1 个答案:

答案 0 :(得分:0)

使用$_GET数组。

一个例子: http://www.webapp.com/test.php?stationnumber=4

通过执行以下操作检索电台号码:

$stationnumber = intval($_GET['stationnumber']);(如果它应该是数字输入,则为intval)