Archive for the ‘PHP’ Category

PHP Array of States

This site has a preprinted PHP array of US states.  Its very handy when you need to add a state selector to your application.  Just thought I’d share that tidbit.

No Comments »

WP 2.6.2 API

I have created API documentation for WordPress (version 2.6.2) using phpDocumentor.  I have done this primarily to assist with my own WordPress documentation, however everyone is free to use it.  At very least I think the WordPress API with phpDocumentor will make it easier to find function I would like to reference in the source code (espcecially ones undocumented on WordPress.org).  WordPress 2.6.2 API by phpDocumentor

No Comments »

PHP Output Buffering

Some of the coolest functions available in PHP are the output buffering functions.  If you are reading this, you probably have some idea of how web php pages are delivered from the server to the client, but if you don’t, here is a quick recap:

  1. User requests any web page
  2. The web server receives and interprets the request
  3. The requested file is sent to the PHP processor
  4. PHP compiles and executes the combination of PHP and HTML sent to it
  5. The compiled information is sent back to the web server (the page may not be complete yet)
  6. Your browser downloads the page from the web server

Continue reading PHP Output Buffering…

1 Comment »

WP Login