Hi,
I'm just starting with PHP and the first exercise is this:
<HTML>
<FORM>
Ingresa tu nombre aquí:<BR>
<INPUT TYPE=TEXT NAME=username>
<BR><BR>
<INPUT TYPE=SUBMIT VALUE="Enviar data">
</FORM>
<BR><BR>
Escribiste:
<BR>
<?php
echo $username;
?>
</HTML>
In the book the example workd fine but I get this error:
Notice: Undefined variable: username in C:\Archivos de programa\Apache Group\Apache2\htdocs\R\PPHPP\pedir_nombre.php on line 11
As you see I'm using Apache with W2K.
Thanks