A PHP function I am writing pulls a small bit of HTML data from another webpage using file_get_contents(), then parses out a piece of text and tries to store it in a database. The problem is, the data it gets must be encoded with a different charset or something (I'm not positive how to check this) because it often adds  (at seemingly random places in the string, not always at beginning or end) and every once in a while adds a new line where I don't want one. The  is annoying but when the newline is added it causes the javascript function to fail. The javascript function is printed from a php script as follows:
print <<<END
setUpSend("${a}", "${b}", "${c}", "${d}");
END;
And when the newline is entered, the function no longer works (I suppose because of the newline), and viewing the source shows something like this:
print <<<END
setUpSend("a information", "b information
", "c information", "d information");
END;
I did some research and found that this  is the UTF-8 BOM (Byte Order Mark) and it is suggested to parse the information as xml not as a string - I found that there are some php libraries to do this (http://php.net/manual/en/book.xml.php) but was thinking there might be an easier way, like a simple php function that will convert it automatically, or strip unwanted characters.
Also, sometimes the information can contain quotes, but since that would mess up the js function as well, I tried to use PHP's addslashes function and it just doesn't add any slashes, not working at all. If I manually write the same exact string in php however, and use addslashes on that, it adds the slashes normally, so it makes me think that somehow php can't understand the encoding of this text I am getting. Something weird is going on but I'm lost on how to fix it.
I'd be more than open to any suggestions as I've looked up a lot of stuff but can't figure out a good way to solve this.
