articles filed under php
Utilizing PHP's strengths
posted on 05/21/07 at 6:29 p.m. |
|
PHP is a procedural language. This is not a criticism. PHP revolutionized CGI by being half-scripting language, half templating system. It is, in fact, about the most powerful templating system around. The fact that object oriented syntax was even able to be bolted on is a testament to that.
Contextual programming
posted on 05/15/07 at 4:25 p.m. |
|
When working on a large project, it is usually advisable to break your code up into smaller portions. In many languages, these are called shared libraries: smaller chunks of code that can be reused as needed throughout this and other programs.