Web siteme slayt aracı için yeni görüntüler oğul eklemek için SimpleXML kullanarak Im, kod şöyle bir şey:
$xml_toload = $_SERVER['DOCUMENT_ROOT']. '/xml/'.$country.'/compact.xml';
$xml = simplexml_load_file($xml_toload); //This line will load the XML file.
$sxe = new SimpleXMLElement($xml->asXML());
//In this line it create a SimpleXMLElement object with the source of the XML file.
//The following lines will add a new child and others child inside the previous child created.
$image = $sxe->addChild('image');
$image->addAttribute('imageURL',$file);
$image->addAttribute('thumbURL',$file);
$image->addAttribute('linkURL',$linkurl);
$image->addAttribute('linkTarget',$linkurl);
$image->addChild('caption',$caption);
$sxe->asXML($xml_toload);
Which is working perfectly to add the new
<image attr="blabla"><caption>imageinfo</caption><image>
child, inside of <imagegallery></imagegalley>
Ama ciddi bir sorun var, ben bu sadece <imagegallery>
, etiket kapalı değil önce, (birbiri ardına) sonra gitmek oğul gerekir, bu Resimgalerisi son yerde, yeni görüntüler görünmesini sağlar slayt.
Geçen önce gibi, xml ekledi Yani eklemek yeni orkideleri, gitmeli
<imagegallery>
<image attr="HEREGOESTHENEWST">
<caption>description</caption>
</image>
<image attr="THEOLDONE">
<caption>description</caption>
</image>
</imagegallery>
Anyone can help me with a clear example? Thank you, its urgent!