Topic awaiting preservation: $HTTP_GET_VARS (Page 1 of 1) |
|
---|---|
Maniac (V) Inmate From: Switzerland |
posted 04-14-2003 13:37
hi code: <?php
|
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 04-14-2003 15:22
Xdreamer.ch: It might depend on your local version of PHP as they have changed the name of the global GET variable - try $_GET but have a look at the manual on the variables page. |
Maniac (V) Inmate From: Switzerland |
posted 04-14-2003 15:35
ok thanks emperor. i'll have a look at it :mosh: |
Maniac (V) Mad Scientist From: :morF |
posted 04-14-2003 15:59
Well...let's see...the variable $HTTP_GET_VARS can be simplified down to the variable $GET and I think it should be $GET["slide"] instead of $GET['slide'] (but that may not matter at all. |
Maniac (V) Inmate From: Switzerland |
posted 04-14-2003 16:26
thank you very much. give it a try later...have to go now |
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 04-14-2003 18:10
there is no actual difference in $GET['slide'] and $GET["slide"]... |
Maniac (V) Mad Scientist From: :morF |
posted 04-15-2003 04:28
Didn't think so...just wanted to be sure. |
Paranoid (IV) Inmate From: Den Haag, Netherlands |
posted 04-26-2003 09:55
For anyone who might be interested in WHY this little problem occurred, I'm going to stick out my neck, and possibly start a discussion on it ... quote:
|
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 04-26-2003 17:11
It is all about extra security measures. Helping to make sure you validate all your variables and such. code: <?
|