GET or POST - you need to use urlen/decode() for NS to get with the plot ie: try this ,
<?php
$str="string with spaces";
echo urlencode($str) ."<br>";
echo urldecode($str) ."<br>";
?>
so use urlencode() on the sending form, and urldecode() at the receiving page