One of the best things about the PHP/MySQL stack is that they almost seem to have been made for each other, ie. if the configuration is correct. A lot of people, though, end up moving on to other things when they can’t configure the stack correctly. We’ve talked about using OS X to install and test WordPress by setting up a MAMP (Mac OS X, Apache, MySQL, PHP) server. So, have we been ignoring Windows over here? No, and today we’ll tell you how you can setup a WAMP server (Windows, Apache, MySQL, PHP) on your Windows based machine without too much fuss. Download and execute the integrated installer which installs the WAMP server just as you’d install any regular Windows application. The only question that the installer asks is the address of the SMTP server that you want to use and the default email address for outgoing emails. This information is used by PHP if you use the built-in email functions. If you’re not going to make use of this, you can just ignore the SMTP settings and chose the default ones and continue. You can now run the WAMP server from the helpful shortcut that the installer places on the Desktop. The only thing that you’ll see when WAMP is running is a small icon in the taskbar. Click the icon and a menu pops up. When you start WAMP for the first time, the server is in offline mode and you can select the Put Online option from this menu to get the server “Online”. You now have a fully functional PHP/MySQL stack on your machine. Fire up your web browser and type in http://localhost in the address bar and you’ll be presented with the default homepage that’s served using the Apache web server. WAMP also comes with phpMyAdmin already configured to manage your MySQL instance. Just point the web browser to http://localhost/phpmyadmin/ and phpMyAdmin will take away all your database management nightmares. If you’re a PHP developer, you can just put all your scripts in the c:\wamp\www folder and then you can use the browser to access them.