searchcar lab 10 (5)
unknown
html
2 years ago
1.1 kB
9
Indexable
<!--Ngoc Huy Duong-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Creating Web Application Lab 10">
<meta name="keywords" content="PHP, MySQL">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cars Search</title>
</head>
<body>
<h1>Cars Search</h1>
<form method="post" action="cars_search.php">
<fieldset><legend>Searching Car Details</legend>
<p class="row"> <label for="carmake">Car Make: </label>
<input type="text" name="carmake" id="carmake"></p>
<p class="row"> <label for="carmodel">Car Model: </label>
<input type="text" name="carmodel" id="carmodel"></p>
<p class="row"> <label for="price">Price: </label>
<input type="text" name="price" id="price"></p>
<p class="row"> <label for="yom">Year of Manufacture: </label>
<input type="text" name="yom" id="yom"></p>
<p> <input type="submit" value="Search for Cars"></p>
</fieldset>
</form>
</body>Editor is loading...