Alright I've been messing around with this for hours now and I still can't get it right so I'm gonna ask you guys.
I have a textarea in html, The value needs to be send to php using ajax(jquery) then imputed to the database, and printable again using php. The problem is i want when printing to be 100% the same as what you typed in. including characters like ' and \
How I do it now:
var comment = escape( box.find('#newCommentArea').val() ).replace(new RegExp( "\\+", "g" ),"%2B");
Where box.find('#newCommentArea').val() is the value. I pass comment to php using ajax function and submit it as POST data.
using firebug this is what is appears to send: comment=asdf%27asdf
printing $_POST['comment'] in php gives me asdf\'asdf
the added \ is a problem. and i need to get rid of it.
either way because only javascript escape isn't safe in php i also do urlencode()
and when printing i use rawurldecode()
Could you guys point out if this method is good, or if it could be done better.
And how do i get rid of the new \ in $_POST['comment']
Thanks in advance,
MakuraYami