First page Back Continue Last page Overview Graphics
Input from the user
In your 'Input' file, you need :
- <FORM method=”GET” action=”formprocessor.php”>
- <INPUT type=”text” name=”name”>
- <INPUT type=”text” name=”address”>
- <INPUT type=”submit”>
- </FORM>
And your 'formprocessor.php' file, you'd have :
<?php
- echo “Hello” . $name . “. You live at “ . $address”;
?>
Notes: