Re: [PHP] parsing value by URL-worked

2004-05-12 Thread Richard Davey
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



[PHP] parsing value by URL-worked

2004-05-12 Thread gowthaman ramasamy
thanks a lot dear Zac and richard
that worked. I earlier tried $_POST[name] but not $_GET[name].
thanks again
i ll reset what richard mentioned.

On Wed, 2004-05-12 at 17:12, Zac Hillier - Net Affectors wrote:
> try $_GET[name]
> 
> Zac
> 
> 

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