Hey all
I'm working on PHP at the moment and am trying to do a form.
I've got a simple one as a test but it doesn't show the typed data at all...
Code:
<HTML>
<FORM>
Please type your name here:<BR>
<INPUT type=text name=username><BR><BR>
<INPUT type=submit value="Submit Data">
</FORM>
<BR><BR>
You typed:
<?php
echo($username);
?>
</HTML>
This is a straightforward script - I can't understand whats wrong with it...