Hello,

Wednesday, May 12, 2004, 12:53:44 PM, you wrote:

gr> thanks a lot dear Zac and richard
gr> that worked. I earlier tried $_POST[name] but not $_GET[name].
gr> thanks again

No worries. One point though - make sure you use $_GET['name'] and
*not* $_GET[name] (note the lack of quotes) - there is a big
difference between the two, the un-quoted version will cause PHP to
check its defined constants first, so you're adding un-needed overhead
and potential error warnings just by missing out those two little
characters :)

-- 
Best regards,
 Richard Davey
 http://www.phpcommunity.org/wiki/296.html

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

Reply via email to