try another color:
try another fontsize: 60% 70% 80% 90%
PHP Suit
Useful PHP scripts

Export Database Schema as XML

OpenID login failed.

Sometimes it can be useful to have a dump of the current database schema. This script reads the schema from a MySQL database and outputs XML that describes the schema.

At first we connect to a MySQL database and use the SHOW TABLES command to return all the tables in the database. Next, we iterate over each table and return the fields for each table using the SHOW FIELDS command. Finally, we put all of the returned information into XML.
PHP: Export Database Schema as XML