php xml執行個體 留言本_php執行個體

來源:互聯網
上載者:User
複製代碼 代碼如下:
//開啟用於儲存留言的XML檔案
$guestbook = simplexml_load_file('DB/guestbook.xml');

foreach($guestbook->thread as $th) //迴圈讀取XML資料中的每一個thread標籤
{
echo " 標題:".$th->title."
";
echo " 作者:".$th->author."
";
echo " 內容:
".$th->content."
";
echo "";
}
?>

複製代碼 代碼如下:
$guestbook = new DomDocument(); //建立一個新的DOM對象
$guestbook->load('DB/guestbook.xml'); //讀取XML資料
$threads = $guestbook->documentElement; //獲得XML結構的根
//建立一個新thread節點
$thread = $guestbook->createElement('thread');
$threads->appendChild($thread);
//在新的thread節點上建立title標籤
$title = $guestbook->createElement('title');
$title->appendChild($guestbook->createTextNode($_POST['title']));
$thread->appendChild($title);
//在新的thread節點上建立author標籤
$author = $guestbook->createElement('author');
$author->appendChild($guestbook->createTextNode($_POST['author']));
$thread->appendChild($author);
//在新的thread節點上建立content標籤
$content = $guestbook->createElement('content');
$content->appendChild($guestbook->createTextNode($_POST['content']));
$thread->appendChild($content);
//將XML資料寫入檔案
$fp = fopen("DB/guestbook.xml", "w");
if(fwrite($fp, $guestbook->saveXML()))
echo "留言提交成功";
else
echo "留言提交失敗";
fclose($fp);
?>

複製代碼 代碼如下:
"http://www.w3.org/TR/html4/loose.dtd">


發表新的留言



發表新的留言





  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.