Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
his class can be used to generate XML documents from data of a given MySQL database.
It can either dump the data of the results of a given SQL query, or dump the all the data of all database tables.
The XML documents are generated using the PHP DOM XML extension . The generated documents are stored in files with paths based on the database and table being dumped.
<?xml version="1.0"?>
<TABLE-RECORDS>
<EXPORT-RECRODS>
<ROW>
<FILE>DSCF0249.jpg</FILE>
<SHORT>testkurz</SHORT>
<LONG>testlang</LONG>
</ROW>
</EXPORT-RECRODS>
</TABLE-RECORDS>
<?xml version="1.0" encoding="ISO-8859-1" ?>
<photoit>
<info file="DSCF0249.jpg">
<short>testkurz</short>
<long>testlang</long>
</info>
</photoit>