Originally posted by neofox
when adding data to mysql via a form in the database it adds \ before " so when i read the value from my database it ends up as \" could someone please tell me how i can get it to stop doing that!
You don't say if you're using PHP, but if so try:-
$clean_data = StripSlashes($data);
🙂