如何使用php在框架中传递参数

时间:2012-07-09 08:57:53

标签: php parameters parameter-passing frame

我想将参数传递给框架中的php文件,但我该如何做到这一点。目前我已经尝试过这个方法(我不确定这个方法)通过将id值传递给frame2.php来将参数传递给frame2.php

<frameset cols = "25%, *">
  <frame src ="frame1.php" />
  <frame id="<?php echo "$pid"; ?>" src ="frame2.php" />
</frameset>
frame2.php中的

我尝试使用此方法调用该ID

<?php
$pid=$_GET['id']; //also tried $_POST['id'];
echo "$pid";
<--other php codes-->
?>

但它不起作用......你能告诉我它为什么不起作用或我可以用什么方法来传递参数

高级感谢您的帮助

1 个答案:

答案 0 :(得分:1)

通过查看您的代码,我可以为您推荐以下代码。

<frameset cols = "25%, *">
  <frame src ="frame1.php" />
  <frame id="<?php echo "$pid"; ?>" src ="frame2.php?id="<?php echo "$pid"; ?>" />
</frameset>

在服务器端你可以像这样得到它

<?php
$pid=$_GET['id']; //also you can try $_REQUEST['id'];
echo "$pid";
<--other php codes-->
?>