A common consensus among the people I know is that PHP's popularity is, as Ben Blank said, a low barrier to entry.
This is partially reinforced by the configuration choices of a SHOCKINGly large majority of hosting providers.
PHP Got in on the action early partially due to the mod_php extension for Apache. Other languages are generally harder to install initially, or the way the implementation behaves is unintuitive to new users.
No SSH/Root.
For non-PHP languages, Low Level access and configuration is a requirement.
The fact that a large majority web-hosts still don't provide SSH + Root access to servers does produces an environment where you can no longer do hard and nasty stuff like compiling optimised C binaries for given parts, or do direct testing.
Most the companies I've seen working with PHP have the following design flow:
- Make some bling in Dreamweaver.
- Upload Bling to server via FTP
- Torture a programmer into making the bling work.
- Upload blood/sweat/tears via FTP.
Its horrible, but thats life.
And this culture has somewhat fostered the predominance of horrendous web-hosting, giving the users the bare minimum and price-gouging them and not delivering, and web-hosting companies starting up just to pander to/con this sector.
Unintuitive Behaviour to newbies.
Compare mod_php to mod_perl,
mod_php:
01: Open Page
02: Start PHP Instance
03: Load Entry Point Script
04: Execute
05: Return Response
06: Terminate Instance.
mod_perl:
01: Start Server
02: Start Perl Instances.
03: Load Perl Scripts.
04: Wait For Request
--> 05: Request Page
--> 06: Delegate to a running instance
--> 07: Instance processes request and returns response
--> 08: Return Response to user
--> 09: Wait for next Request ( Goto 04 )
The latter is however really confusing to new users. Variables ( which new users don't really understand, hence evil things like 'register_globals' ) that can persist in memory and other inter-request persistence just baffle new users.'
It makes no sense why a page loaded by one user would have information sent by another user available to it, AND they are likely not to understand the best way to use those variables and misuse them to disastrous effect.