this is the php code i m using
$overfile="C:/xampp/htdocs/project/templates/user$template/templateDetails.xml";
//$xmlDoc = new DOMDocument();
$xmlDoc=simplexml_load_file("$overfile");
echo'XML file loaded';
foreach($xmlDoc as $install){
if($install->name=="$template"){
$install->name="user$template";
}
}
$xmlDoc->asXML($overfile);
and XML FILE is as follows
<install version="1.5" type="template" method="upgrade">
<name>template1</name>
</install>
I want to replace<name>template1</name> with <name>usertemplate1</name>
how can i do this