• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Giữ giá trị trong menu đổ xuống trong form php - Php keep dropdown value after form submit

Admin

Well-Known Member
Staff member
Administrator
Chào các bạn, hôm nay tuoitreit.vn xin hướng dẫn các bạn cách tạo form và giữ lại giá trị menu đổ xuống trong php
Để làm được điều đó bạn chỉ cần sử dụng dòng mã sau:
PHP:
<body>
<form action="<?php echo $_SERVER['PHP_SELF'] ;?>" method="post">
Chọn màu:
<select name="danhsach">
<option <?php if(isset($_POST['danhsach']) && $_POST['danhsach']=='red') echo "selected='selected'"; ?>>red</option>
<option <?php if(isset($_POST['danhsach']) && $_POST['danhsach']=='yellow') echo "selected='selected'"; ?>>yellow</option>
<option <?php if(isset($_POST['danhsach']) && $_POST['danhsach']=='blue') echo "selected='selected'"; ?>>blue</option>
<option <?php if(isset($_POST['danhsach']) && $_POST['danhsach']=='purple') echo "selected='selected'"; ?>>purple</option>
<option <?php if(isset($_POST['danhsach']) && $_POST['danhsach']=='orange') echo "selected='selected'"; ?>>orange</option>
</select>
<br />
<input type="submit" name="guidulieu" value="Gửi" />
</form>
<?php
if(isset($_POST['guidulieu'])) {
if(isset($_POST['danhsach'])) {
$value = $_POST['danhsach'];
echo "<p style=color:$value>$value</p>";
}
}
?>
Mọi thắc mắc vui lòng phản hồi bên dưới
Chúc bạn thành công!
Mọi sao chép vui lòng ghi rõ nguồn tuoitreit.vn!
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top