0
我的WordPress網站,我想創建一個使用$_SESSION
Wordpress和多頁形式
而且我用兒童主題多頁表格(第2頁)。
所以我創建了2個頁面模板(第一頁和第二頁)。並使用first-template.php
第一頁,second-page.php
的第二頁
首頁
<?php
//Session starts here
session_start();
?>
...
<form action="http://localhost/mysite/secondpage/" method="post">
<label>Full Name :</label><br />
<input name="name" type="text" required>
<input type="submit" value="Next" />
</form>
但是,當我嘗試發送信息到第二頁,我得到「找不到網頁錯誤」,但http://localhost/mysite/secondpage/頁面是存在的。
另外,如果我進入http://localhost/mysite/secondpage/(瀏覽器) - 我得到的第二頁,但使用表單動作
go throgh this link:https://www.formget.com/multi-page-form-php/ 希望它可以幫助你 –