Home Backend Development PHP Tutorial php 怎么把表单数据写入到XML文件中

php 怎么把表单数据写入到XML文件中

Jun 13, 2016 pm 01:49 PM
doc quot

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;
} <div class="clear">
                 
              
              
        
            </div>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What format is doc? What format is doc? Jul 29, 2022 am 11:52 AM

Doc is a file in document format; doc is the abbreviation of Document, which represents graphic and text content and can be opened using Word of the office software Office. This format was originally used for plain text files and is more common in different operating systems. Software and hardware Instructions for use.

How to generate documentation using Java documentation comments? How to generate documentation using Java documentation comments? Apr 23, 2023 pm 11:55 PM

We know that Java supports three types of comments, namely single-line comments, multi-line comments and document comments. Let’s take a look at what they look like //Single-line comments/*Multi-line comments*//***@...*.. ..*Documentation Comments*/ Many newbies may not understand, what is the use of writing these comments? In fact, it is because beginners have a small amount of code and can quickly search and modify it without comments. When the code gradually increases, comments are a good thing, not only so that you can clearly see the code, but also to develop projects with you. It is convenient for members to remember and get rid of the bad habit of not writing comments! ! ! So, here comes our topic today, what are Doc comments? javadoc is a technology provided by Sun. It starts from the program

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

How to convert Google Doc files to MS Word files and vice versa How to convert Google Doc files to MS Word files and vice versa Apr 19, 2023 pm 04:31 PM

GoogleDocs is so simple that now everyone can complete their document work through GoogleDocs instead of traditional document editors like Microsoft Word. There are many advantages to using Google Docs, you can access your documents from anywhere in the world with just an internet connection and computer connection. You don't need to preinstall software on your computer, and you don't need to compromise on space to store the files you create. However, not everyone likes to just go with the flow and keep up to date with modern technology. We all like to be lazy sometimes, and if you're a Microsoft Word lover, that's totally fine. But when you're a GoogleDocs guy and you're working with

What is the format of doc file? What is the format of doc file? Aug 18, 2023 am 10:26 AM

doc is a common document file format that stands for Microsoft Word document and is used to create, edit, and store text documents. It has broad compatibility, rich formatting and layout options, and the ability to support multimedia elements. However, doc files also have some disadvantages, including larger file sizes and complex binary file structures.

图片消失怎么解决 图片消失怎么解决 Apr 07, 2024 pm 03:02 PM

图片消失如何解决先是图片文件上传$file=$_FILES['userfile'];  if(is_uploaded_file($file['tmp_name'])){$query=mysql_query("INSERT INTO gdb_banner(image_src ) VALUES ('images/{$file['name'

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题 不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题 Jun 13, 2016 am 10:15 AM

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没问题。

图片消失怎么解决 图片消失怎么解决 Jun 13, 2016 am 10:09 AM

图片消失如何解决先是图片文件上传$file=$_FILES['userfile'];  if(is_uploaded_file($file['tmp_name'])){$query=mysql_query("INSERT INTO gdb_banner(image_src ) VALUES ('images/{$file['name'

See all articles