HOWTOlabs  
 Services     Software     Commentary     Design     Astral Musings   
PHP
Setup and basic uses
  printable 
PHP, originally Personal Home Page, is an incredibly powerful and easy to use scripting language. Ideal for server-side database applications, it has started to eclipse Java as the defacto standard for web application development.  
Related
Elsewhere

Debugging Tips

  • Check /var/log/httpd/error_log
    Indeed even static HTML pages with quiet errors may have messages here that can be helpful.

PHP file uploading is typically set to a low value. Adjust /etc/php.ini to suit your needs ...
# cd /etc

# diff php.ini
  501c501
  < upload_max_filesize = 2M
  ---
  > upload_max_filesize = 50M

#  service httpd restart
zap technologies