PHP __autoload function
When PHP encounters a class that hasn’t been defined yet, you can use __autoload to automatically add them instead of including masses of …
Read Article →52 articles about php development, tools, and best practices
When PHP encounters a class that hasn’t been defined yet, you can use __autoload to automatically add them instead of including masses of …
Read Article →If you ever find yourself needing to do some ajax and in turn sending strings of characters via javascript then you should really try …
Read Article →You can use “ucwords()” to uppercase the first character of each word in a string.
e.g.
$myVar = 'this is a test!';
$myVar = …
Read Article →
A brilliant version of print_r for actionscript:
http://dev.base86.com/solo/47/actionscript_3_equivalent_of_phps_printr.html
Read Article →