The backslash character () is the standard escape character. When it is seen PHP intreprets it to mean use the character following the backslash as itself and don't do whatever special thing you would normally do.
So this code will print out "I have a variable called $var" instead of "I have a variable called my variable":
<?php
$var = "my variable"
echo "I have a variable called \$var";
?>
So when your data is recieved PHP reads the backslashes and just prints the character following them. You should look at the [man]addslashes()[/man] command.