Who keeps telling people to use :)
$_GET[$username]

it should be $_GET['username']
$_GET is a key value pair array.
the key is the name of the html form variable in this
case username and the value is the value entered in
the form.

 
--- Adrian <[EMAIL PROTECTED]> wrote:
> lol variables in quotes - especialli when there is
> only the variable
> are really ugly.
> you should use $_GET[$username]...
> 
> > Use double quotes:
> > $_GET["$username"];
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 


__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to