Hi,
I am manipulating data to make a csv file, but I run into a wierd symbol everywhere.
Look at the following extract:
"Hydroxypropylmethylcellulose, Petrolatum, Titanium Dioxide.Replenix Fortified CleanserPurified Water, Sorbitol, Cetyl Alcohol, Stearyl Alcohol, "
You see those ? I hope they'll appear too when I post this message...
I want to take them out.
I'm doing a
$field = str_replace("\n"," ",$field);
$field = str_replace("\t"," ",$field);
$field = str_replace("\r"," ",$field);
But I don't know how to delete those symbols, since I don't know what they're supposed to be.
They appear both on the actual html page and on the database using phpMyAdmin.
When I try to fwrite() them on a file, they appear as new lines.
Any ideas?
Thx.