Download the Flash plugin.
Web Design
Using PHP 5 /MySQL to output XML for Google Maps Print E-mail
This tutorial is based on Pamela Fox’s excelent Php/ MySql tutorial but is intended for developers who are using PHP 5 and no longer have access to the Dom XML function.

The Dom XML funchtion was only considered experimental and was removed as of PHP 5.  You can attempt to uses PHP’s ehco function but if you search the Google Groups discussion board you will see that it creates all kinds of inconsistent browser problems and would not be the recommend method.

So if you need XML support with PHP 5 you have to use the DOM extension and the domxml extension used in Pamela’s tutorial is not compatible with the DOM extension.

The great thing about using DOM function is that there is no installation needed to use these functions; they are part of the PHP 5 core.

Read more...