Hi guys.
I'm developing a simple content management system for a client, and I need to post data to a script which then writes it to a file. However, I don't have access to the config files on the server (it's a shared host) and I'm going insane with the whole "magic quotes" thing. They mess up any HTML code they get their hands on by escaping all the quotes. It's really irritating.
I've tried using stripslashes() to counter the effect, which had some success, but then it would over-zealously remove slashes that were meant to be there.
Does anyone know of a reliable method to keep submitted data un-Magic-quoted? It's driving me nuts!
Cheers in advance
Alias