is it hard to make an admin panel for the .xml files we used with our flashes…
like that:
1. read our .xml file:
<?xml version=“1.0” ?>
<gallery>
<photo name=“bla” desc=“blah.” image=“blablah.jpg” />
<photo name=“lol” desc=“wtf” image=“lolwtf.jpg” />
</gallery>
2. then convert it to html form with javascript&php:
*gallery form:
- photo1 -> name |bla| desc |blah.| image |blablah.jpg|
photo2 -> name |22222| desc |33333| image |23.jpg|
|submit| |reset|
**
3. after submiting, save again to xml file…**
<?xml version=“1.0” ?>
<gallery>
<photo name=“hede” desc=“hode.” image=“hedehode.jpg” />
<photo name=“22222” desc=“33333” image=“23.jpg” />
</gallery>
so it would be nice to have an admin panel that simple…
i did a search for php class but no luck :hurt:
any chance with a.j.a.x ? or anything closer?