2017-08-28 59 views
0

這是playingcards-quote.phpIM不能形成的輸入數據存儲在重定向網頁上......都形成具有相同的輸入數據的形式

 <div class='container'> 
      <label for='name' >First Name*: </label><br/> 
      <input type='text' name='name' id='name' maxlength="50" value="<?php if(isset($_POST['name'])) { echo htmlentities($_POST['name']); 

     }?>" /><br /> 
      <span id='contactus_name_errorloc' class='error' style="font-size: 12px;"></span> 

     </div> 

重定向頁面具有相同的輸入form dataplayingcards-quote.php

 <div class='container'> 
      <label for='name' >First Name*: </label><br/> 
      <input type='text' name='name' id='name' maxlength="50" value="<?php if(isset($_POST['name'])) { echo htmlentities($_POST['name']); 

     }?>" /><br /> 
      <span id='contactus_name_errorloc' class='error' style="font-size: 12px;"></span> 

     </div> 

我不能在重定向頁面上存儲表單的輸入數據...兩個表單都有相同的輸入數據形式 我有兩個頁面,兩個表單的值相同 當我提交表單的值一頁相同的值應該在重定向頁面中看到頁面

+0

這不是我清楚你描述。你能詳細說明這個問題嗎?你在說什麼「重定向」?這看起來像兩次相同的代碼,有什麼區別? – David

+0

如果我得到它的權利,他希望當用戶提交第一個表單重定向到第二個窗體的新頁面,並從第一個表單設置字段 –

+0

@大衛我想要一個輸入表單值即使重定向另一頁。我的第一種形式和重定向頁面形式是完全相同的形式。我想保存從第一種形式到第二種形式的價值 –

回答

-1

試試這個.hope這給你一個想法。除非我誤解

<html> 
    <head> 

    </head> 
    <body> 
    <form action="pass2.php" method="Post"> 

    <input type='text' name='name' id='name' maxlength="50" /> 

    <input type="submit" value="Submit"/> 
    <form/> 
    <body/> 
    </html> 

表單2,這是「pass2.php」

<html> 
<head> 

</head> 
<body> 


<input type='text' name='name' id='name' maxlength="50" value=<?php echo $_POST["name"]?> /> 


<body/> 
</html> 
+0

謝謝。那就是我需要的一切 –