PHP noob requires help.
Posted: Mon Aug 26, 2002 7:48 am
Hi all.
Quick question, I have just started to learn PHP, I have written a form page which would submit 4 different types of details, e.g name, email, comments etc. When I submit these details nothing is coming up on my php recieve page.
I have installed apache and php on my PC configed as Localhost. Below is the code form the php page, any help would be appreciated.
<HTML>
<HEAD
<TITLE>Form Results</TITLE>
<HEAD>
<BODY>
<?PHP
/* This page prints results from form.html */
print "Your first name is $FirstName.<BR>\n";
print "Your last name is $LastName.<BR>\n";
print "This is your comment $Comment.<BR>\n";
?>
</BODY>
</HTML>
Quick question, I have just started to learn PHP, I have written a form page which would submit 4 different types of details, e.g name, email, comments etc. When I submit these details nothing is coming up on my php recieve page.
I have installed apache and php on my PC configed as Localhost. Below is the code form the php page, any help would be appreciated.
<HTML>
<HEAD
<TITLE>Form Results</TITLE>
<HEAD>
<BODY>
<?PHP
/* This page prints results from form.html */
print "Your first name is $FirstName.<BR>\n";
print "Your last name is $LastName.<BR>\n";
print "This is your comment $Comment.<BR>\n";
?>
</BODY>
</HTML>