I am trying to storing multiple form values to xml file using php but here i am able to store only one time posted value.if i post next time it is getting updated.How to make them remain
I am getting values in variables.
$xmlBeg = "<?xml version='1.0' encoding='ISO-8859-1'?>";
$rootELementStart = "<$u>";
$rootElementEnd = "</$u>";
$xml_document= $xmlBeg;
$xml_document .= $rootELementStart;
$xml_document .= "<box>";
$xml_document .= $con; --//it is getting value of posted
$xml_document .= "</box>";