File "form.php"
Full Path: /home/analogde/www/filechange/WEBSITE/douche/form.php
File size: 381 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
if(isset($_POST['submit']) )
{
echo("First name: " . $_POST['a'] . "<br />\n");
echo("Last name: " . $_POST['b'] . "<br />\n");
}
?>
<form action="form.php" method="post">
<p>First name: <input type="text" name="a" /></p>
<p>Last name: <input type="text" name="b" /></p>
<input type="submit" name="submit" value="Submit" />
</form>