I am new to PHP and would like to learn. I am limited to running on Windows and need advice on getting setup. Which IDE should I use? Are there any development servers similar to the one included in Visual Studio? What other general advice do you have?

link|improve this question

feedback

7 Answers

up vote 2 down vote accepted

If it is intended to be a dev machine, there's no reason to hassle around with manual installation. There are bundles out there, like XAMPP or EasyPHP. Both of these offer very simple installation of apache, php and mysql.

Regarding editors, I tried a few. My personal choice is Netbeans, for being crossplatform and confortable.

link|improve this answer
feedback

For a development server, I recommend installing an instance of XAMPP. It's a 1-step install of Apache, PHP, MySQL, and Perl. As far as Editors/IDE, there's a lot of different options out there. Personally, I prefer Notepad++.

link|improve this answer
I agree with XAMPP. and as for development in general, Notepad++ is a tool I can't live without. – czuroski May 28 '10 at 18:35
For fancy set for features in your IDE, Zend Studio is based on Eclipse. If you also do a lot of HTML and like to see what you do, Dreamweaver helps. – nute May 28 '10 at 18:50
feedback

The Zend Server Community Edition does an install with PHP 5.2 or 5.3, Apache 2+, and MySQL 5+ as one install. As far as IDEs are concerned I've used Eclipse (and Zend Studio), Notepad++, and NetBeans. I tend to favor the Zend Studio implementation of Eclipse but they're both nice.

And, this is all on my local PC.

link|improve this answer
Out of curiosity, what is the difference between Zend Studio's version of Eclipse and the Eclipse for PHP Developers download from eclipse.org? – Powerlord May 28 '10 at 19:14
I believe it has better ZendDebugger and PHPUnit integration (a huge bonus, IMHO). I know there are also some Zend Server integration pieces directly in the IDE. Ah, here's Zend's comparison. zend.com/en/products/studio/comparison – Inkspeak May 28 '10 at 19:48
feedback

Another easy to setup environment is the following:

link|improve this answer
feedback

I tried many IDEs and editors and finally settled on Visual Studio. You can install the Express Edition for free.

Then, with a quick registry hack you can enable syntax highlighting for PHP, which is darn near good enough for me.

link|improve this answer
feedback

If you're not in need of Perl, I'd recommend WAMP (or here for English version) and either Eclipse PDT or NetBeans PHP.

link|improve this answer
feedback

Just go get a book. This one is free: http://www.computer-books.us/php_0004.php

link|improve this answer
This is a great book, but its scope won't include much about setting up the entire environment. oreilly.com/catalog/9780596005436 is slightly better, because of the inclusion of DB integration, however both lack advice about the entire setup including IDE, server, etc. – JYelton May 28 '10 at 19:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.