As mentioned in the question, I am trying to generate an XML output( for an iPhone app) using PHP which is reading the data from MySQL's text field.
Whenever there is a horizontal ellipsis character in the field... the XML is not generated properly.
I have tried a few ways to escape it like shown below, but none seems to work...
$row['detail'] = str_replace("&", "&", $row['detail']);
$row['detail'] = str_replace("…", "…", $row['detail']); //<-- prob is here
$row['detail'] = str_replace("<", "<", $row['detail']);
$row['detail'] = str_replace("\'", "'", $row['detail']);
$row['detail'] = str_replace(">", ">", $row['detail']);
$row['detail'] = str_replace("\"", """, $row['detail']);
I have 2 questions basically,
How do I handle horizontal ellipsis chracter?
Are there more such characters which could cause such problem? Any reference to this list and its solution would be great!
Thanks