Hello all,
I am writing a file manager. I have practically finished the whole thing apart from one thing, I have an "edit" option, which is fine, but when you type something like:
echo('blah');
it will write to the file as:
echo(\'blah\');
(Which causes major problems with the PHP parser.
How can I stop things that are submitted using the form to the file_put_contents function from putting \ in front of '
Thanks
MTG