Using custom sounds for iPhone SMS notification
I quickly go bored of the default iPhone SMS sounds. But its relatively easy to switch them to your own.…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
I quickly go bored of the default iPhone SMS sounds. But its relatively easy to switch them to your own.…
To allow your Ubuntu server to send emails from PHP, then you need to install postfix. Postfix is a mailer…
Just a simple function to sort an already populated list. Obviously it would be easier to sort before populating, but…
I keep having trouble with this simple calculation! So, here is a little example to get the amount of days…
My Nokia doesn’t have threaded SMS view – and its very annoying. So, after searching about for a suitable application…
Having MySQL dumping out binary logs is a very good failsafe for backup redundancy. But, how do you get any…
If, like me, you need to access some Zend_Application resources (such as multidb resources) – then you need a reference…
ThisĀ horrendousĀ regular expression will parse a string and return a valid email address from it. $email = "<'Freddy'> fred@live.com"; preg_match('/[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/', $email,…
I’ve found an excellent online tool, where you can give it a regex, and it will spit out the PHP…