Lưu giá trị trong select sau khi gửi trong PHP
Hãy làm sao để lựa chọn của người dùng được lưu lại sau khi gửi:
<form action="" method="GET">
<select name="test">
<option value="1" <?php
if (!empty($_GET['test']) and $_GET['test'] === '1') {
echo 'selected';
}
?>>item1</option>
<option value="2" <?php
if (!empty($_GET['test']) and $_GET['test'] === '2') {
echo 'selected';
}
?>>item2</option>
<option value="3" <?php
if (!empty($_GET['test']) and $_GET['test'] === '3') {
echo 'selected';
}
?>>item3</option>
</select>
<input type="submit">
</form>
Sửa đổi nhiệm vụ trước đó sao cho giá trị đã chọn không biến mất sau khi gửi.