Archive for August, 2009

Joomla 1.5 User Import Script

August 12th, 2009

A while ago I wrote a script to bulk import users into a Joomla 1.5 installation… I was surprised (and still am) that there was no good Joomla component to import users from CSV or Excel Spreadsheet. It might be outdated with the newest Joomla builds, but the core might still be a useful starting point.

» Read more: Joomla 1.5 User Import Script

Validating ABNs and ACNs in PHP

August 10th, 2009

Here is a PHP validation class to validate Australian Business Numbers (ABN) and Australian Company Numbers (ACN)

» Read more: Validating ABNs and ACNs in PHP

PHP Camel Case functions

August 10th, 2009

Here are two PHP functions to convert strings between underscore format and camel case.
E.g. from firstName to first_name and vice versa.
» Read more: PHP Camel Case functions