[PHP] passing varibles into PHP script

2002-10-28 Thread wh1sp3r
I'm trying to create a script that handles/logs banner click-throughs 
from an HTML page passing variable information through the URL.

example URL:
http://somehost.com/bannerhandler.php?value=1

The test script I wrote, however, is not recieving the variable 
information.  Any ideas of what I should look for or some helpful 
documentation to read?

Thanks





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



Re: [PHP] passing varibles into PHP script

2002-10-28 Thread John Nichel
wh1sp3r wrote:

I'm trying to create a script that handles/logs banner click-throughs 
from an HTML page passing variable information through the URL.

example URL:
http://somehost.com/bannerhandler.php?value=1

The test script I wrote, however, is not recieving the variable 
information.  Any ideas of what I should look for or some helpful
documentation to read?

The php manual?

Try this

echo ( $_GET['value'] );



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




Re: [PHP] passing varibles into PHP script

2002-10-28 Thread @ Edwin
Hello,

wh1sp3r [EMAIL PROTECTED] wrote:

 I'm trying to create a script that handles/logs banner click-throughs 
 from an HTML page passing variable information through the URL.
 
 example URL:
 http://somehost.com/bannerhandler.php?value=1
 
 The test script I wrote, however, is not recieving the variable 
 information.  Any ideas of what I should look for or some helpful 
 documentation to read?
 

Perhaps it has something to do with this?

  http://www.php.net/manual/en/security.registerglobals.php

You can search the archives:

  http://marc.theaimsgroup.com/?l=php-general

Try passing variables as your keyword :)

HTH,

- E


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