Code has been added to clipboard!

Adding Input Field in PHP Form

Example
<html>
<body>

<form action="pet_get.php" method="get">
Breed: <input type="text" name="breed"><br>
Color: <input type="text" name="color"><br>
<input type="submit">
</form>

</body>
</html>