Jack Nilan         Intro to PHP        EMail : jacknilan@yahoo.com


Look Here at this simple form. Right mouse click and view the source. You can copy it and create a page of your own at your own site.

Then create a PHP page which will receive the information from the form :

<html>
<body>
<?php
$na = $_POST['name'];
$ph = $_POST['phone'];
$e = $_POST['email'];
print "Your name is $na <br>";
print "Your Email is $e <br>";
print "Your phone is $ph <br>";
?>
</body>
</html>