Home  >  Article  >  Database  >  How to Extract MySQL Data as XML in PHP?

How to Extract MySQL Data as XML in PHP?

Mary-Kate Olsen
Mary-Kate OlsenOriginal
2024-11-06 20:36:02506browse

How to Extract MySQL Data as XML in PHP?

Extracting MySQL Data as XML in PHP

Question:

How can we retrieve XML output of specific columns from a MySQL database using PHP?

Solution:

To accomplish this, we employ the following PHP code:

mysql_connect('server', 'user', 'pass');
mysql_select_db('database');

$sql = "SELECT udid, country FROM table ORDER BY udid";
$res = mysql_query($sql);

$xml = new XMLWriter();

$xml->openURI("php://output");
$xml->startDocument();
$xml->setIndent(true);

$xml->startElement('countries');

while ($row = mysql_fetch_assoc($res)) {
  $xml->startElement("country");

  $xml->writeAttribute('udid', $row['udid']);
  $xml->writeRaw($row['country']);

  $xml->endElement();
}

$xml->endElement();

header('Content-type: text/xml');
$xml->flush();

Result:

The code generates the following XML output:

<?xml version="1.0"?>
<countries>
 <country udid="1">Country 1</country>
 <country udid="2">Country 2</country>
 ...
 <country udid="n">Country n</country>
</countries>

The above is the detailed content of How to Extract MySQL Data as XML in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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