
hi,
is this normal behaviour...
$db->escape('string', "testing
123");
which creates a string literal of 'testing
r
n 123' and is inserted into the DB as is?
this means i will have to string or preg replace every occurance in order to display it back which surely cant be right...
i was expecting it to be stored in the db as
#!text/html
testing
123
am i missing something?