Given the following HTML form code, write a php file that displays all the input of the user as a list.

Php website design

Question Two

Given the following HTML form code, write a php file that displays all the input of the user as a list.

<!DOCTYPE html>

<html>

<head>

<title>Registration</title>

</head>

<body>

<form method=“get” action=“file.php”>

First Name:<input type=“text” name=“first”><br />

Last Name:<input type=“text” name=“last”><br />

Email:<input type=“text” name=“email”><br />

Level:<input type=“text” name=“level”><br />

<input type=“submit” value=“submit” name=“submit”>

</form>

</body>

</html>

Include the screenshot of the program output as a part of your answer.

Given the following HTML form code, write a php file that displays all the input of the user as a list.
Scroll to top