Hello everyone, I'm sorry I havent posted in such a long time. I've been busy with coding, going out, managing a DC hub etc... Do you still remember me?
Anyway, ive recoded my CMS (again) this time its much more efficient but im faced with a few problems.
First problem is, I need to turn off magic_quotes or whatever it is called. I need to do this because I already have a script doing it:
<?
foreach($_POST as $title => $val){
$_POST[$title] = addslashes($val);
}
?>
Secondly, this isnt really a php question but when I add something that has " or ' in the title (Or anything that would be later displayed in an input box) is goes wrong Is there anyway to "escape" the " and ' in HTML?
Thanks in advance, Atomiku.