PHP හි යවා ඇති පසු Select වල අගය සුරැකීම
පරිශීලක තේරීම යැවීමෙන් පසු සුරක්ෂිතව තබා ගැනීමට අපි කරමු:
<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>
යැවීමෙන් පසු තෝරාගත් අගය අතුරුදහන් නොවන පරිදි පෙර කාර්යය වෙනස් කරන්න.