Thanks for responding. I just solved it.
$writer_thought = mysql_real_escape_string($writer_thought);
$sql = "INSERT INTO $table (writer_thought,
....)
VALUES ('$writer_thought,
.....
)";
I just solved the problem, somehow I managed to accidentall delete the
$writer_thought = stripslashes(TRIM($writer_thought));
In the form....
Everything is working now.