我有一个包含HTML表单的PHP文件。当用户在表单中输入数据时,它会执行错误检查,如果一切正常,则输入的数据将按特定顺序写入XML文件。这部分很完美。我的问题是当用户再次填写此表单时,我需要将新数据附加到XML文件(而不是覆盖它)。目前,它只是过度写入数据,有人可以帮助我如何做到这一点?我试过看教程,但我对XML很新,发现它们令人困惑。我的XML文件如下;
<?php
function createFile($xml_file)
{
$FileMessageID = $_POST['messageid'];
$FileCreation = $_POST['filedatetime'];
$FileTransactions = $_POST['filetransactions'];
$FileControlSum = $_POST['filecontrolsum'];
$CID = $_POST['CID'];
// create new dom document
$xml = new DOMDocument();
// these lines would create a nicely indented XML file
$xml->preserveWhiteSpace = false;
$xml->formatOutput = true;
// create a root element, and add it to DOM
addRoot($xml);
// add more elements to xml file
$CustomerDDInfo = $xml->createElement("CstmrDrctDbtInitn");
// add this element to the root
$xml->documentElement->appendChild($CustomerDDInfo);
// create elements
$GroupHeader = $xml->createElement("GrpHdr");
$InitiatingParty = $xml->createElement("InitgPty");
$IdentificationHeading = $xml->createElement("Id");
$PrivateIdentification = $xml->createElement("PrvtId");
$Other = $xml->createElement("Othr");
// append these elements to friend
$CustomerDDInfo->appendChild($GroupHeader);
$GroupHeader->appendChild($xml->createElement('MsgID', $_POST['messageid']));
$GroupHeader->appendChild($xml->createElement('CreDtTm', $_POST['filedatetime']));
$GroupHeader->appendChild($xml->createElement('NbOfTxs', $_POST['filetransactions']));
$GroupHeader->appendChild($xml->createElement('CtrlSum', $_POST['filecontrolsum']));
$GroupHeader->appendChild($InitiatingParty);
$InitiatingParty->appendChild($IdentificationHeading);
$IdentificationHeading->appendChild($PrivateIdentification);
$PrivateIdentification->appendChild($Other);
$Other->appendChild($xml->createElement('Id', $_POST['CID']));
$CustomerDDInfo->appendChild($PaymentInformation);
// save dom document to an xml file
$xml->save($xml_file);
}
function addRoot(&$xml)
{
$xml->appendChild($xml->createElement("entry"));
}
// call xml function
createFile('SEPA.xml');
//Redirect to Thank You Page
header ('Location: thankyou.php');
?>
答案 0 :(得分:1)
XML不像文本文件,您只需将其他数据放在其底部即可。在XML中,您必须将额外信息放在现有XML内部的某个节点中。
<exampleXML>
<item>
<name></name>
<number></number>
<date></date>
</item>
</exampleXML>
当您要加载XML的另一个XML项目时,请使用&#39; exampleXML&#39;节点并将子项附加到它。 结果:
<exampleXML>
<item>
<name></name>
<number></number>
<date></date>
</item>
<item>
<name></name>
<number></number>
<date></date>
</item>
</exampleXML>
我不经常在PHP中使用XML DOM,因此我无法为您提供任何代码。 请查看http://www.php.net/manual/en/class.domdocument.php以了解正确的功能。