|
In PHP 4.1.0 the superglobal $_GET array was introduced.
$http_get_vars should still be available though - but maybe there is a setting in php.ini that configures how this variable can be accessed. Anyway, just use $_GET from now on - it's the official way ;-)
|
|
Expert:
|
jgivoni
|
|
Date:
|
Feb 19, 2007
|
|
Time:
|
07:59
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
thank, jgivoni.
I'll use $_GET from now on.
I found out that the change was the new host not having Register Globals enabled default.
|
|
Expert:
|
dustPuppy
|
|
Date:
|
Feb 19, 2007
|
|
Time:
|
08:02
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
change your php.ini file
register_long_arrays = On
Or
********************
insert into your .htaccess file
register_long_arrays = On
*****************
and Enjoy with your nice codding
|
|
Expert:
|
pankajsiddhast
|
|
Date:
|
Jun 05, 2007
|
|
Time:
|
22:24
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
|
|
|
|
This question has been answered, and points have been rewarded to the following experts:
| jgivoni: |
30 |
| dustPuppy: |
30 |
You're welcome however to comment or give additional information or if you wish, you have the ability to write an Answer Summary for this question by clicking on the "Answer Summaries" Tab.
|
|