Ruajtja e vlerës në selektet pas dërgimit në PHP
Le të bëjmë që zgjedhja e përdoruesit të ruhet pas dërgimit:
<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>
Modifikoni detyrën e mëparshme në mënyrë që vlera e zgjedhur të mos zhduket pas dërgimit.