I'm trying to write a simple script to add links to my website. The idea is, I type in the code to a text box and it is added to the html page. But when I run the script the code I entered comes out with slashes.
for example
<a href="www.msn.com">
comes out like:
<a href=\"www.msn.com\">
When I run it on my own Apache+PHP system at home it works fine, but on my public server it adds the slashes. So it may be a config thing. But I can't modify the Apache or PHP config files. I've heard of something called magic_quotes, could this be the problem?
I know this is probably a doddle for all you experienced coders, but I'm still at the stage where I'm frozen without a reference book 🙂 .