Quote:
Originally Posted by perplexed
Too be honest i've just spent an hour trying a myriad of ways to get this database working and i despair. It's becoming the most frustrating, enraging and infuriating task.
I've looked under 'Server variables and settings' and in a very long list can find no mention whatsoever of 'global_variables'...so are they on or off? haven't got a clue and before i smash my computer against the wall...i'm walking away and will try again tomorrow.
Final annoying straw...par for the course i guess. I just went to add the above paragraphs in an edit...and as always when one presses save you are told you don't have permisiion to do so..refresh the page and login again. The backbreaker being, after doing that the edit option has gone and i can only 'add reply'....nice!
|
The php.ini variable is register globals, I recommend you don't touch it.
I am assuming your scripts use the GET method to parse the data to your variables.
All you need to do is add is $a = $_GET['a']; $b = $_GET['b']; $c = $_GET['c']; etc.