D
design2
Guest
ive done a tested php form , as a basic intro to php, still on the first few pages..but i want to edit the text color and other properties.
my form page is fine because its done in html, but the feedback page where it has the php response text is default text. I dont know where to put
the properties.
my code is:
<?php // Script 3.4 - handle_form.php
// This page recieves the data from feedback.html
// It will recieve: title, name, email, response, comments and submit.
print " Thank You " . $_POST['title'] . $_POST['name'] . " for your comments. <br />";
print "Your " . $_POST['response'] . " response stated: <p>" . $_POST['comments'];
?>
my form page is fine because its done in html, but the feedback page where it has the php response text is default text. I dont know where to put
the properties.
my code is:
<?php // Script 3.4 - handle_form.php
// This page recieves the data from feedback.html
// It will recieve: title, name, email, response, comments and submit.
print " Thank You " . $_POST['title'] . $_POST['name'] . " for your comments. <br />";
print "Your " . $_POST['response'] . " response stated: <p>" . $_POST['comments'];
?>