Guys and Gals:
I am trying to learn php from some books and I had some problem. It will be apperciate if someone can tell me what's wrong with the following syntax
<FORM>
Please type your name here: <BR>
<INPUT TYPE=TEXT NAME=username><BR><BR>
<INPUT TYPE=SUBMIT VALUE="SUBMIT DATA">
</FORM>
You Typed:
<?php echo ($username) ; ?>
When I typed something in the browser (in the textbox field" and hit submit data, it directly me to ../abc.php?username=abcde; however, there were nothing was being printed after "You Typed: ". Please help!!!
I am trying to learn php from some books and I had some problem. It will be apperciate if someone can tell me what's wrong with the following syntax
<FORM>
Please type your name here: <BR>
<INPUT TYPE=TEXT NAME=username><BR><BR>
<INPUT TYPE=SUBMIT VALUE="SUBMIT DATA">
</FORM>
You Typed:
<?php echo ($username) ; ?>
When I typed something in the browser (in the textbox field" and hit submit data, it directly me to ../abc.php?username=abcde; however, there were nothing was being printed after "You Typed: ". Please help!!!