我有
<form name="feedback" method="post" onsubmit="return checkform()" action="engine.php?ad=">
我需要将变量附加到
engine.php?ad=
,
<?=$_GET['page'];?>
(使用此URL将URL参数传递给下一页。)
我该如何添加?
如果需要,我也可以在javascript中使用它。
答案 0 :(得分:1)
像这样:
<form name="feedback"
method="post"
onsubmit="return checkform()"
action="engine.php?ad=<?php echo htmlentities($_GET['page']); ?>">