Question
1 2 3 4 5 Form Feedback 6 7 8 26 27 Comment the files and clean them up to make them functional. They do
1
"http://www.w3.org/TR/xhtml1/DTD/
xhtml1-transitional.dtd">
2
3
4
content="text/html; charset=utf-8" />
5
6
7
8
9
10 // Create a shorthand for the form data:
11 $name = $_REQUEST['name'];
12 $email = $_REQUEST['email'];
13 $comments = $_REQUEST['comments'];
14 /* Not used:
15 $_REQUEST['age']
16 $_REQUEST['gender']
17 $_REQUEST['submit']
18 */
19
20 // Print the submitted information:
21 echo "
Thank you, $name,
for the following comments:
22 $comments
23
We will reply to you at
$email.
";24
25 ?>
26
27
Comment the files and clean them up to make them functional. They do not have to look perfect, but must run properly.
Submit both files and a few screenshots. Do not zip or compress your files.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started