page1.php中傳遞文本區域值到另一個頁面
<form action ="page2.php" method="post">
<input type="text" name="username">
<input type="submit" value="Send">
</form>
使page2.php
<form action ="page2.php" method="post">
<input type="text" name="username" value="<?php echo $_POST['username']; ?> />
<input type="submit" value="Send">
</form>
大家好,這是工作確定,但,當我去page2.php
保存的值在文本框中正在閱讀jason /><input type=
我嘗試了各種嘗試刪除的東西/><input type=
任何可以闡明我的錯誤?乾杯... CPM
這個問題似乎是脫離主題,因爲它是關於一個錯字。 – Barmar