您好我需要實現類似的東西,我有一個ul和li標籤中的值列表,在一個頁面和一個按鈕,所以當我點擊它時下一頁所有這些ul,li值應該填充到選擇選項中。例如, form1.php將值從一個頁面傳遞到另一個頁面在PHP中
<form method="POST" action="next page.php">
<input type="text" name="designation" value="Manager" />
<label>Location:</label>
<ul>
<li>New Delhi</li>
<li>Mumbai</li>
</ul>
<input type="submit" value="submit" />
</form>
一旦我提交form1.php,然後在接下來的page.php文件就應該是這樣的
<form method="POST" action="insert.php">
<input type="text" name="designation" value="<?php echo $_POST['designation'] ?>"
<select> all the values from the previos page of ul,li should get populated over here in drop down.</select>
//some more fields will be there in this form.
<input type="text" name="DOB" />
<input type="text" name="phone_no" />
<input type="submit" name="Submit" value="Submit" />
使用[會議檢索此](https://www.w3schools.com/php/php_sessions.asp) - 只是一個通過建議。 –
您可以通過3種不同的方式來完成:在請求URL中作爲參數,或者通過設置cookie,或者添加會話變量。 – MaxZoom
我使用會議,但從ul列表,李,我如何在選擇,下拉列表中填充這些值,找不到任何東西 –