Help with this GD image thing... (thing?!)

Hi everyone…

So I recently felt the urge to try out the GD image stuff.

It all works had a few ups and downs trying to get it quote text from a txt file thats sorted now its just the outcome that annoys me…

the first line of the text file is ok. but when its on its 2nd or further down line it shows a funny little symbol…

What it looks like :

the symbol, letter or icon at the end…

I got rid of the first little icon that looked like v ontop of a T using:

 $string = str_replace("
","",$items[$item]);

and i can get rid of the “r” looking one using

 $string = str_replace("\r","",$items[$item]);

but when i put them together like:

 $string = str_replace("
","",$items[$item]);
$string = str_replace("\r","",$items[$item]);

it doesnt work…

How can i remove it… or atleast combine the two str_replace functions together?

Please Help!

Thank you

Chris S J