Difference between revisions of "Test verca 5"

From wiki
Jump to navigation Jump to search
(Replaced content with "<h1>My First Heading </h1>")
Tag: Replaced
Line 1: Line 1:
<h1>My First Heading </h1>
+
<form action ="/action_page.php">
 +
  <label for+"cars">choose a car:</label>
 +
  <select name="cars" id="cars">
 +
    <option value="volvo">Volvo</option>
 +
    <option value="saab">Saab</option>
 +
    <option value="opel">Opel</option>
 +
    <option value="audi">Audi</option>
 +
  </select>
 +
  <br><br>
 +
  <input type="submit" value="Submit">
 +
</form>
 +
 
 +
<p> Click the "Submit" button and the form data-data will be sent to a page on the server called "action_page.php.</p>

Revision as of 09:46, 8 June 2022

<form action ="/action_page.php">

  <label for+"cars">choose a car:</label>
  <select name="cars" id="cars">
    <option value="volvo">Volvo</option>
    <option value="saab">Saab</option>
    <option value="opel">Opel</option>
    <option value="audi">Audi</option>
  </select>
  

<input type="submit" value="Submit"> </form>

Click the "Submit" button and the form data-data will be sent to a page on the server called "action_page.php.