All pastes #2053722 Raw Edit

Miscellany

public text v1 · immutable
#2053722 ·published 2011-05-04 07:06 UTC
rendered paste body
1.php:

<HTML>
<BODY>
<FORM NAME='frm1' METHOD="POST" ACTION="2.php">
Please enter your name:
<INPUT NAME="name" TYPE="text"><BR>
<INPUT NAME="enter" TYPE="submit" VALUE="Enter">
</FORM>
</BODY>
</HTML>

2.php:

<HTML>
<BODY>
<?php
echo $_POST['name'];
?>
</BODY>
</HTML>