How to use XML and HTML?

Use php.
$url = "path.xml";
$xml = file_get_contents($url);
for ($thisfilter=0; $thisfilter<$numberoffilters; $thisfilter++){
$tofind = "what to find";
$toreplace = "what to replace";

$xml = str_ireplace($tofind,$toreplace,$xml);
}

echo $xml;
 
Back
Top