I am unable to turn this:
into this:
Have tried, trim(), ereg_replace("\n","",$str)
any ideas anyone?
rgds, Scottd
Got it. If anyone is interested:
<?php
$body = eregi_replace("%0D%0A"," ",urlencode($text)); echo urldecode($body);
?>