I would like to have an xml file like so:
<title>Italian</title>
<keywords>pizza,italy,pasta,sauce,spices</keywords>
<description>Italian Food</description>
<image>italian.gif</image>
<title_alt>Food from Italy</title_alt>
<subs>pasta|sandwiches|soups</subs>
<default>pasta</default?
<manager>Tony</manager>
which could turn into in php:
section_title[1]="Italian";
section_keywords[1]="pizza,italy,pasta,sauce,spices";
section_description[1]="Italian Food";
section_image[1]="italian.gif";
section_title_alt[1]="Food from Italy";
section_subs[1]="pasta|sandwiches|soups";
section_default[1]="pasta";
section_manager[1]="Tony";
( [1] could also be the title, so section_image[1] would instead be section_image_Italian )
Any thoughts on how to get started or of scripts that might do this?
Thanks in advance for your help.