2017-02-22 45 views
1
<input name="CONTACT_PHONE" placeholder="contact phone" class="form-control" type="text"> 

通過POST歌廳代碼如何發送值存在標籤在XML文件中usuing PHP

$contactphone = $_POST['CONTACT_PHONE']; 

加載XML文件

$xml = simplexml_load_file("JOBS.xml"); 

越來越存在標籤

$tagcontactphone = xml -> getElementsByTagName("CONTACT_PHONE") 

如何把$contactphone放在$tagcontactphone並保存XML文件?

回答

0

你可以把它用等號

$xml->getElementsByTagName("CONTACT_PHONE") = $contactphone; 

而且可以保存更新XML或在文檔發送

file_put_contents('newfile.xml', $xml->asXML()); 
echo $xml->asXML(); 

看:SimpleXML basic usage

相關問題