I am using wordpress as a CMS and trying to allow user fields to be input to populate the info windows in a Google Map script. I am using this to select the id and pull in
I always use this to get rid of pesky carriage returns:
$string = str_replace("\r\n", "\n", $string); // windows -> unix $string = str_replace("\r", "\n", $string); // remaining -> unix