Copy code The code is as follows:<html> <body> <?php // Get the select value $select_value = isset($_GET['select']) ? $_GET['select'] : ''; ?> <form action="?"> <select name="select"> <option value="">default</option> <option value="option1" <?php // If the value obtained above is the same as the value in this option, // Print selected, making this option selected by default echo $select_value == 'option1' ? 'selected' : '' ?>>option1</option> </select> <input type="submit" value="submit" /> </form> </body> </html> This script should be added to each option, and if there are multiple options, they can be printed in a loop. |
<<: Solution to css3 transform transition jitter problem
>>: Implementing a simple age calculator based on HTML+JS
This should be something that many people have do...
Table of contents What is a mind map? How to draw...
This article shares the specific code of JavaScri...
How to Install GRUB for Linux Server You cannot u...
This article is intended to be a starting point f...
Border Style The border-style property specifies ...
Busybox: A Swiss Army knife filled with small com...
Rendering principle In the form element, there is...
Preface Introduction Lombok is a handy tool, just...
The one I wrote before is too complicated, let’s ...
Problem description: structure: test has two fiel...
1. First, download the latest version of MySQL fr...
Analyze four common methods and principles: float...
Recently, two accounts on the server were hacked ...
Because I wrote a Python program and intensively ...