Welcome,
I'm using jquery to send form, via POST.
That's how i'm getting value.
var mytext = $("#textareaid").val();
var dataString = 'text='+ mytext;
Problem is, i lost somewhere '+' sign... PHP don't get it. But when i print mytext, i can see + sign.
I think it's special char and it's removed by jquery.
Does anyone have better idea then, repleace in javascript "+" with "hereshouldbepositivesign" and in php repleace "hereshouldbepositivesign" to "+" ? Regards