Code has been added to clipboard!

Adding Input Field With PHP Form Action

Example
<html>
<body>

<form action="pet.php" method="post">
Pet breed: <input type="text" name="breed"><br>
Color: <input type="text" name="color"><br>
<input type="submit">
</form>

</body>
</html>