On 6/16/05, Chase <php@xxxxxxxxxxxx> wrote: > Hi there! > I have been stumbling my way through PHP for a while now and I have > finally decided that I need to set up my development machine with a local > testing / debugging setup so that I can stop uploading all of my blunders to > my public site to test... > I am running XP Pro SP2 with IIS installed and running... Where do I need > to go from here? I have downloaded the latest PHP Windows Binary but I > don't know if I should install it first, or if I should try to find MySQL to > install first... Any help on setting up this monster would be helpful!!! It doesn't matter if you install MySQL or PHP first since you would most likely be installing both precompiled, not from source. Enabling MySQL support in PHP on Windows consists of properly defining your extensions directory in your php.ini, placing your php_mysql.dll in that defined extensions directory, and finally you would uncomment the MySQL extension line. extension_dir = "c:\php\ext" extension=php_mysql.dll I would use the regular PHP installer, then add the files from the non-installer download to the initial install in c:\php. That will get you a ton of extra extensions you may or may not want. -- Greg Donald Zend Certified Engineer http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php