php xml实例 留言本

实例学习制作xml留言本代码。

复制代码 代码如下:


<?php
//打开用于存储留言的XML文件
$guestbook = simplexml_load_file('DB/guestbook.xml');

foreach($guestbook->thread as $th) //循环读取XML数据中的每一个thread标签
{
echo "<B>标题:</B>".$th->title."<BR>";
echo "<B>作者:</B>".$th->author."<BR>";
echo "<B>内容:</B><PRE>".$th->content."</PRE>";
echo "<HR>";
}
?>


复制代码 代码如下:


<?php
$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);
?>


复制代码 代码如下:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>发表新的留言</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<H1><p>发表新的留言</p></H1>
<form method="post" action="Post.php">
<table cellpadding="0" cellspacing="0">
<tr>
<td>标题</td>
<td><input type="text" size="50"></td>
</tr>
<tr>
<td>作者</td>
<td><input type="text" size="20"></td>
</tr>
<tr>
<td>内容</td>
<td><textarea cols="50" rows="10"></textarea></td>
</tr>
</table>
<p>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</p>
</form>
</body>
</html>

您可能感兴趣的文章:

相关文章

最新评论

站长推荐

正版 Windows 10

正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248]

站长推荐

正版 Office 软件

Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]

大家感兴趣的内容

最近更新的内容

常用在线小工具

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/0da82c4440ba2827ddaeede20a4c121d.html