1
0
mirror of https://github.com/php/web-php.git synced 2026-03-29 18:52:08 +02:00
Files
archived-web-php/apachecon/s_lang3.php3
Rasmus Lerdorf 2424277ad8 Add main slides
1998-10-21 23:44:28 +00:00

12 lines
342 B
PHP
Executable File

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