我想創建三個頁面,當在文本框中輸入名稱並將該按鈕單擊到下一頁時,它會要求確認輸入的名稱是正確並單擊下一個按鈕以轉到最後一頁。輸入的文本應該從第一頁轉到第二頁,然後是第三頁。我必須在代碼中使用「隱藏」以及「標題」以及「POST」。將在文本框中輸入的文本傳遞給其他三個頁面
這裏是我有一個頁面迄今在:
<? $things = array('one thing', 'two thing'); ?>
<form action= "page1.php" method="POST">
<INPUT TYPE="TEXT" name="textbox">
<input type='hidden' name='secret' value=96>
<input type='hidden' name='stuff' value='<?= urlencode(serialize($things)) ?> ' >
<input type='submit' name='submit_btn'>
</form>
這是我的下一個頁面上有:
<?php
echo "Click next if your name is " . $_POST['textbox'];
?>
<form action= "page2.php" method="POST">
<input type='hidden' name='secret' value=96>
<input type='hidden' name='stuff' value='<?= urlencode(serialize($things)) ?> ' >
<input type='submit' name='next' value ="next">
</form>
,這是我得到的最後一頁... 請幫忙!謝謝!
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form action= "page1.php" method="POST">
<?php
echo "Finally! Welcome " . $_POST['textbox'];
?>
</form>
</body>
</html>
所以你有錯誤?一個問題?請確認你的問題。 –
爲什麼不使用會話? [http://www.sitepoint.com/php-sessions] – Haywire