MIC:MultiConvert
( Firefox: Lesezeichen hinzufügen oder mit STRG+D )Import/Export: CSV, Excel, PDF, Database , Array, HTML, SQL, XML, Pic-Code-Generator (Mehr...)
Dieser geniale Script-Wandlungsmanager bietet die einfache Möglichkeit eine bestimmte Format-Datei in ein anderes zu konvertieren.
XML Generate From SQL
Code For XML
<?php
/* include the ACS class page */
require_once("../../classes/ACS.php");
/* Step 1: create object of the ACS class */
$ACS=new ACS();
/* Step 2: call the convert method for reading the csv Format and inserting data in database */
/* $sql = Write sql query for input */
/* $outputFileLocation = location of the output file (i.e. complete path of the output file) */
$ACS->convert("sql","xml",$sql,$outputFileLocation);
?>