Black Panter
Mitglied
Hi,
ich habe eine XML-Datei
Wenn ich diese jetzt versuche mit
auszugeben wird mir folgende Fehlermeldung angezeigt
liegt es an meine XML-Datei? Und wenn ja, was muss ich an ihr dann ändern?
Grüße aus Japan
Sören-san
ich habe eine XML-Datei
Code:
<?xml version="1.0" encoding="utf-8"?>
<gallery>
<site>
<logo src="" date=""></logo>
<outer height="1024px" width="786px" border="thin solid #000" bg_img="none"></outer>
<header_img src="" date="" float="left" height="13%" width="100%"font_size="20" color="000" bg_color="333" bg_img="none" align="center" valign="middle"></header_img>
<menu type="" float="left" height="87%" width="20%" size="12" color="CCC" bg_color="003" border="none" hcolor="CCC" hbg_color="003" bg_img="none" align="left" valign="top">
<mlvl1 name="Link 1 LVL 1" src=""></mlvl1>
<mlvl1 name="Link 2 LVL 1" src="">
<mlvl2 name="Link 2 LVL 2" src=""></mlvl2>
</mlvl1>
</menu>
<rcontent float="left" width="80%" height="87%" bg_img="none" bg_color="">
<content height="97%" color="CCC" bg_color="666" bg_img="none" size="" align="left" valign="middle"></content>
<footer height="3%" color="123456" bg_color="6CF" bg_img="none" size="" align="center" valign="middle">
<flink src="" name=""></flink>
</footer>
</rcontent>
</site>
<album name="" font_color="" fonz_size="" bg_color="" date="" dir="" lastchange="" comment="">
</album>
</gallery>
Wenn ich diese jetzt versuche mit
PHP:
$xml = simplexml_load_file('data.xml');
print_r($xml);
Code:
Warning: simplexml_load_file() [function.simplexml-load-file]: data.xml:7: parser error : attributes construct error in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: <header_img src="" date="" float="left" height="13%" width="100%"font_size="20 in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: data.xml:7: parser error : Couldn't find end of Start Tag header_img line 7 in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: <header_img src="" date="" float="left" height="13%" width="100%"font_size="20 in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: data.xml:7: parser error : Opening and ending tag mismatch: site line 3 and header_img in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: r="000" bg_color="333" bg_img="none" align="center" valign="middle"></header_img in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: data.xml:22: parser error : Opening and ending tag mismatch: gallery line 2 and site in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: </site> in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: data.xml:24: parser error : Extra content at the end of the document in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: <album name="" font_color="" fonz_size="" bg_color="" date="" dir="" lastchange in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in G:\xampp\htdocs\progs\gallery\content\sample\style.php on line 4
liegt es an meine XML-Datei? Und wenn ja, was muss ich an ihr dann ändern?
Grüße aus Japan
Sören-san