我有我的index.php
頁面有一個窗體。驗證之後,來自index.php
的參數將在URL中傳遞到另一個頁面test1.php
。分頁和傳遞url參數在php
test1.php
已分頁,因此,頁面不斷刷新,我的URL參數消失。我希望我的參數留在test1.php
而分頁,因爲參數和test1.php
數據將在test2.php
index.php
<a href="test1.php?test=".<?php urlencode($var)?> > Go </a>
test1.php
$var1= $_REQUEST['test'];
<a href="test2.php?test=".<?php urlencode($var1)?> > Go </a>
test2.php
$param = $_REQUEST['test'];
'$ var'和'$ var1'在哪裏設置? – afuzzyllama 2013-04-06 17:47:23
你想要的回答不清楚......你需要將你的參數追加到test1.php的分頁URL上 - ? – 2013-04-06 17:51:43
$ var是$ var = $ _POST ['p_name'];和var1是$ var1 = $ _REQUEST ['test']; – deepz 2013-04-06 17:54:01