1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 11:42:09 +02:00
Files
archived-web-php/oreilly99/s_lang3.php3
1999-08-21 16:11:20 +00:00

12 lines
350 B
PHP

<?php require "header.inc"?>
<h2>Handling Forms</h2>
<?example('<form action="action.php3" method="POST">
Your name: <input type=text name=name><br>
You age: <input type=text name=age><br>
<input type=submit>
</form>');?>
<h2>action.php3:</h2>
<?example('Hi <?php echo $name?>.
You are <?php echo $age?> years old.')?>
<?php require "footer.inc"?>