hi
i want to insert or update a record to mysql.
content of text filed has some " character (they are html codes: <table dir="ltr" .... >)
when i want to add normal it doesn't work
$sqlquery = "INSERT INTO static VALUES('$content')";
$results = mysql_query($sqlquery);
but when i use of $content=addslashes($content); before this code it works success but when i view the content of record before all " characters there is \ character ( all " converted to \") (<table dir=\"ltr\" ... )
mysql_real_escape_string() works like addslashes() too
i dont want add anything before " characters when i view record.
what do i do?