Jump to content

What can i do to validate my xml feeds ?


2levelsabove

Recommended Posts

I think that you are mistaken about which are the 'bad' characters.

 

This is a line 338 taken from the validator"<description>please visit site<![CDATA[Very clean 2005 Honda Civic DX(Value Package), Low miles â\x80\x93 31,300, Auto Trans, Blue,"

 

'\x80' is the euro symbol

I'm not sure what \x93 is but you can tell from the original code so you need to do a string replace i.e.

 

$bad=array("\x80","\x93");
$good=array("&#8364;","?????");
$xml=str_replace($bad,$good,$xml);

 

Also "please visit site" needs to be inside the cdata tags.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.