Login   Register  
PHP Classes
elePHPant
Icontem

File: DB_TO_XML.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Olavo Alexandrino  >  ADODB XML  >  DB_TO_XML.php  >  Download  
File: DB_TO_XML.php
Role: Example script
Content type: text/plain
Description: This example saves the data of the consultation in an file XML
Class: ADODB XML
Import and export data in databases to XML files
Author: By
Last change:
Date: 2004-07-23 07:07
Size: 299 bytes
 

Contents

Class file image Download
<?php require_once('connection.php'); ?>
<?php 
require_once('class.ADODB_XML.php'); ?>
<?
/*
This example saves the data of the consultation in an file XML
*/
$adodbXML = new ADODB_XML("1.0""ISO-8859-1");
$adodbXML->ConvertToXML(&$objConnection"SELECT * FROM user""usersxml.xml");
?>