[jQuery] .post trouble

[jQuery] .post trouble


Hi.
I have a problem with .post().
I try to send this str:
date=19.11.2008&title=Input title&description=Input
description&keywords=Input keys&body=

Test

&nbsp;</
p>

ggggggggg


post function:
$.post("http://bla-bla/post.php",
str,
function(data){
$("#answer").html(data);
}
);
This part of post.php:
<?php
$body = $_POST['body'];
print "Main body: " . stripslashes($body) ."
";
?>
If in variable "body" exist "

&nbsp;

", then all the remaining
data in variable "bode" will not transferred or will not appear
(

ggggggggg

in my example).
When I remove "

&nbsp;

", then everything OK.
That this can be and how resolve this?
Thank for your help.