Hard to explain, but for some reason when I grab content (in php) that contains new lines at the start of a file (Like this):
Hello world!
and echo($content); it into a <textarea>; It is shown like this:
Hello world!
It ONLY removes the first line (if there is one that's blank).
But if I do this in JavaScript: textarea.innerHTML = '<?PHP echo($content); ?>' it works (not ideal tho, I am trying to stear away from this)..
Really could use the help because I am dumbfounded right now :S
EDIT: Also, it only happens if the new lines come before any text/strings. For example this will be retrieved like this and displayed like this:
Hello world, this will work