2014-02-07 57 views
0

我想做一個簡單的文本區域,當一個成員把一個id,你會重定向與你的推杆的ID做所需的頁面之前.. 即如果我的ID是:123456,我把它放進去,當我點擊去,我會被重定向到www.testsite.com/?p=details&id=123456 有人可以幫我嗎?PHP通過用戶ID在重定向URL onother

<form action="" method="POST" onclick="submit" name="Formular"> 
      <font face="Arial">VID: </font> 
      <input type="text" name="ID" size="6"> 
      <input type="submit" value="Weiter" name="B1"> 
     </form> 

再見

+0

http://www.php.net/manual/en/function.header.php – thpl

+0

爲什麼不你只需要使用方法GET,並相應地設置動作和字段名稱......? – CBroe

回答

0

你可以這樣做只是這樣的:

<?php 
//Check ID is given - (prüfe ob ID übergeben wurde) 
if(isset($_REQUEST['ID']) && is_numeric($_REQUEST['ID'])) 
{ 
    header("LOCATION: http://www.testsite.com/?p=details&amp;id=".(int)$_REQUEST['ID']); 
    exit; 
} 
?> 

<html> 
<body> 
<form action="" method="POST" onclick="submit" name="Formular"> 
    <font face="Arial">VID: </font> 
    <input type="text" name="ID" size="6"> 
    <input type="submit" value="Weiter" name="B1"> 
</form> 
</body> 
</html> 
+0

試試這個..會爲你工作。 – Guru