如何在提交时传递表单中的URL参数?

时间:2010-05-06 17:23:20

标签: php forms

我有

<form name="feedback" method="post" onsubmit="return checkform()" action="engine.php?ad=">

我需要将变量附加到

engine.php?ad=

php中的

<?=$_GET['page'];?>(使用此URL将URL参数传递给下一页。)

我该如何添加?

如果需要,我也可以在javascript中使用它。

1 个答案:

答案 0 :(得分:1)

像这样:

<form name="feedback" 
      method="post" 
      onsubmit="return checkform()" 
      action="engine.php?ad=<?php echo htmlentities($_GET['page']); ?>">