Re: [PHP] Variables not getting passed when I post info

2001-04-16 Thread Ulf Wendel



Brandon Orther schrieb:
> I made a GD script that made an image with the name of whatever page I was
> in in my web site.  I would post info to it like this:
> http://www.domain.com/jpeg-out.php?title=FrontPage  what ever I put for
> title it would make the image.  After reinstalling php4 on my win2000 box
> with apache it doesn't seem to get the $title variable.  Does anyone know
> what might be going wrong?

Check register_globals,
http://www.php.net/manual/en/html/configuration.html#ini.register-globals
and make sure you're not trying to access a global variable from within
a function.

BTW, does your script contain  ? If
you you've written a perfect killer application. The webserver has to
handle your script ( 1st request => 1 process on the webserver) and all
the http://www.ulf-wendel.de/projekte/menu/tutorial.php |
http://www.phpdoc.de

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Variables not getting passed when I post info

2001-04-16 Thread Plutarck

Check your settings for track_vars and register_globals and ensure they are
both enabled.

Furthermore, check for the existance of $HTTP_GET_VARS["title"]. If it isn't
there either and both of your ini settings are set correctly, then you can
basically ignore this advice because you are having a different problem
entirely.


--
Plutarck
Should be working on something...
...but forgot what it was.


"Brandon Orther" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
>
> I made a GD script that made an image with the name of whatever page I was
> in in my web site.  I would post info to it like this:
> http://www.domain.com/jpeg-out.php?title=FrontPage  what ever I put for
> title it would make the image.  After reinstalling php4 on my win2000 box
> with apache it doesn't seem to get the $title variable.  Does anyone know
> what might be going wrong?
>
> Thanks,
> Brandon
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Variables not getting passed when I post info

2001-04-16 Thread Brandon Orther

Hello,

I made a GD script that made an image with the name of whatever page I was
in in my web site.  I would post info to it like this:
http://www.domain.com/jpeg-out.php?title=FrontPage  what ever I put for
title it would make the image.  After reinstalling php4 on my win2000 box
with apache it doesn't seem to get the $title variable.  Does anyone know
what might be going wrong?

Thanks,
Brandon


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]