nasıl ben bir xml dosyası varsa, php dom kullanarak kontrol edin ve eğer değilse oluştururum.
<?php
header("Location: index.php");
$xmldoc = new DOMDocument();
$xmldoc->load('sample.xml');
$newAct = $_POST['activity'];
$root = $xmldoc->firstChild;
$newElement = $xmldoc->createElement('activity');
$root->appendChild($newElement);
$newText = $xmldoc->createTextNode($newAct);
$newElement->appendChild($newText);
$xmldoc->save('sample.xml');
?>
o var olmadığından şu anda, bana bu hatayı veriyor:
DOMDocument::load(): I/O warning : failed to load external entity