php 怎么把表单数据写入到XML文件中
程序员文章站
2022-05-21 18:20:18
...
php 如何把表单数据写入到XML文件中?
php 如何把表单数据写入到XML文件中?
求教了,最好给段代码看看!
------解决方案--------------------
php 如何把表单数据写入到XML文件中?
求教了,最好给段代码看看!
------解决方案--------------------
- PHP code
require('config.php'); $doc = new DOMDocument('1.0', "gb2312"); $root = $doc->createElement('URL'); $root = $doc->appendChild($root); $sql = "select * from cdb_forums"; $result = mysql_query($sql); while($row = mysql_fetch_array($result)) { $imgnode = createNode($root, "Image_Information"); createNode($imgnode, "img_link", $row['fid']); createNode($imgnode, "big_image", $row['type']); createNode($imgnode, "thumb_image", $row['status']); } $doc->save("./update.xml"); function createNode(&$pNode, $nodeName, $nodeValue='', $nodeAttribute = array()) { global $doc; $node = $doc->createElement($nodeName); if($nodeValue != "") { $nodeText = $doc->createTextNode($nodeValue); $node->appendChild($nodeText); } if(sizeof($nodeAttribute) > 1) { foreach($nodeAttribute as $key=>$value) { $node->setAttribute($key, $value); } } $pNode->appendChild($node); return $node; }相关文章
相关视频
推荐阅读
-
把list集合的内容写入到Xml中,通过XmlDocument方式写入Xml文件中
-
asp取动态表单中数据并写入xml文件,用xsl显示
-
[!]怎么把wordpress的数据库连接修改为小弟我自己配置的文件:app_config.php中的链接
-
php+mysql 怎么用循环的方式把表单内容update到数据库
-
怎么把php从数据库中获得的值显示到前台表单中 具体例子
-
php添加数据到xml文件中
-
[!]怎么把wordpress的数据库连接修改为小弟我自己配置的文件:app_config.php中的链接
-
php中的url规则是怎么写入到数据库的
-
新手请问一个关于PHP 从数据库取得数据后怎么填充到XML文件中
-
php 如何把数据库中的记录 写入到word 中