view _xampp/contrib/sql2xml.php @ 13:cc36a20a68ab

automatically decide which rows (what data) should be shown in the exporting table based on the topic.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Tue, 17 Feb 2015 15:25:11 +0100
parents b12c99b7c3f0
children
line wrap: on
line source

<?php
	include_once("XML/sql2xml.php");

	$sql2xml = new xml_sql2xml("mysql://root@localhost/cdcol");
	$xml = $sql2xml->getxml("select * from cds");
	
	header("Content-Type: text/xml;");
	echo $xml;
?>