I'm looking at PHP to read the XML Schemas and store the veribals and then create some thing like this: -
http://www.o0matte0o.myby.co.uk/project/SVG-UML.htm
So for example if the XML Schema was like this
<xs:element name="note">
<xs:complexType>
<xs:sequence>
<xs:element name="to" type="xs:string"/>
<xs:element name="from" type="xs:string"/>
<xs:element name="heading" type="xs:string"/>
<xs:element name="body" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
So the Image from the link above:-
Example UML Diagram
Atribute 01 : String(30)
Atribute 02 : String(30)
Atribute 03 : String(30)
Atribute 04 : String(30)
The PHP Will Produce the same sorta thing but with the correct atributes.
note
to:string
from:string
heading:string
body:string
Know is this possible with php or should I use a differnet Server Side Coding