$guestbook = new DomDocument(); //新しい DOM オブジェクトを作成します
$guestbook->load('DB/guestbook.xml'); //XML データを読み取ります
$threads = $guestbook->documentElement; //XML 構造のルートを取得します
//新しいスレッド ノードを作成します
$thread = $guestbook->createElement('thread'); thread);
//新しいスレッド ノードにタイトル タグを作成します
$title = $guestbook->createElement('title');
$title->appendChild($guestbook->createTextNode($_POST[ 'title']));
$thread->appendChild($title);
//新しいスレッド ノードに author タグを作成します
$author = $guestbook->createElement('author'); ->appendChild($guestbook- >createTextNode($_POST['author']));
$thread->appendChild($author);
//新しいスレッド ノードにコンテンツ タグを作成します
$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 " メッセージの送信に失敗しました";
コードをコピーします:
"http://www.w3.org/TR/html4/loose.dtd">
投稿新しいコメント ;p align="center"> ; 新しいメッセージを投稿
title |