Sorry guys, I program very little with php, I just moved my php script here from a different site. I collect user comments in that script and whenever a user types a " or ' it is escaped like \" or \'. It was not happening in my other site. How can I stop this?. Part of my script:
$filename = 'guest1.html';
$somecontent = $_POST['Comment'];
$somecontent will contain \'s..
$filename = 'guest1.html';
$somecontent = $_POST['Comment'];
$somecontent will contain \'s..