$xml_output problemer
HejJeg har noget php kode som skriver et xml dokument med data fra mysql. Koden ser således ud:
$xml_output = "<?xml version=\"1.0\"?>\n";
$xml_output .= "<Config>\n";
$xml_output .= "\t<Galleries>\n";
for($x = 0 ; $x < mysql_num_rows($resultID) ; $x++){
$row = mysql_fetch_assoc($resultID);
$xml_output .= "\t<pic>\n";
$xml_output .= "\t\t<image>admin/" . $row['sti'] . "</image>\n";
$xml_output .= "\t\t<caption>" . $row['date'] . "</caption>\n";
$xml_output .= "\t\t<thumbnail>admin/" . $row['thumb'] . "</thumbnail>\n";
$xml_output .= "\t</pic>\n";
}
$xml_output .= "\t</Galleries>\n";
$xml_output .= "</Config>\n";
$xmlfil="images.xml";
$writexml=fopen($xmlfil, "w+");
fwrite($writexml, $xml_output);
fclose($writexml);
echo $xml_output;
den fungerer rigtig fint. Men jeg har fundet et galleri som jeg gerne vil bruge, men der skulle xml'en gerne se således ud:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Config Folder="images" ThumbSize="50,50" ThumbSpacing="10,10" ThumbsRowCount="7" ThumbsToARow="3" GalleryThumbsToARow="9" DefaultGallery="1">
<Galleries>
<Gallery id="1" name="Gallery 1" thumb="thumbs/gallery1.jpg">
<img thumb="gallery1/thumbs/1.jpg" src="gallery1/1.jpg" caption="Caption goes here."/>
<img thumb="gallery1/thumbs/2.jpg" src="gallery1/2.jpg" caption="Caption goes here."/>
<img thumb="gallery1/thumbs/3.jpg" src="gallery1/3.jpg" caption="Caption goes here."/>
</Gallery>
</Galleries>
</Config>
Og ligemeget hvordan jeg vender og drejer den får jeg kun fejl.
En der har styr på xml output der vil se på det?
Mvh
Oldschool