PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
thats one var. that is intrepreted before any php script is read by the interpreter because depending on how that is set it will intrepret the code differently.....i think
Magic quotes affects GET POST and COOKIE global arrays. These arrays are 'created' by PHP, before it starts to interpet your script so you could use them.
That's why changing magic_quotes_gpc from On to Off (and otherwise) won't have any effect and PHP team decided to disable possibility to change this value as it won't have any effect.
As it has already been said to change magic_quotes_gpc you need to do it before PHP starts interpeting your script.