<input name="CONTACT_PHONE" placeholder="contact phone" class="form-control" type="text">
通过POST获取代码
$contactphone = $_POST['CONTACT_PHONE'];
加载xml文件
$xml = simplexml_load_file("JOBS.xml");
获取存在标记
$tagcontactphone = xml -> getElementsByTagName("CONTACT_PHONE")
如何将$contactphone
放入$tagcontactphone
并保存xml文件?
答案 0 :(得分:0)
你可以把它与等号
放在一起$xml->getElementsByTagName("CONTACT_PHONE") = $contactphone;
您可以保存更新的XML或发送
file_put_contents('newfile.xml', $xml->asXML());
echo $xml->asXML();
查看文档:{{3}}