Generate XML with PHP

SenatorS

New Member
I want to create some XML from a XML file using PHP, but i cant get it to workThe XML file\[code\]<?xml version="1.0"><streams> <stream>test</stream></streams>\[/code\]The PHP \[code\]<?php header("Content-type: text/xml"); $xml = simplexml_load_file("t.xml"); $html = "<?xml version='1.0'>"; $html = $html . "<streams>"; foreach($xml->stream as $stream) { $html= $html . "<stream>"; $html = $html . "<![CDATA[" . $stream->title . "]]>"; $html= $html . "</stream>"; } $html = $html . "</streams>"; echo $html; ?>\[/code\]The Error \[code\]Error: This page contains the following errors: error on line 2 at column 1: Extra content at the end of the document Below is a rendering of the page upto the first error.\[/code\]
 
Top