Create that email address!
Published in PHP
For the most part, sending emails using PHP is one of the simplest things one could possibly do, using the mail() function. We usually just use a rudimentary script which can easily be ported around and used where ever it calls for, with minimal amount of hacking. However, today an issue arose and caused quite…
On Closures in PHP
Published in PHP
PHP is known to be a very ugly language. In fact, PHP makes it almost effortless to write really ugly code. There are certain methodologies and patterns that try to alleviate this problem but even then, it’s still a piece of cake writing horrid code. If we look at almost any other high level language,…
How I Learned to Stop Worrying and Keep Things Short
Published in Code Design
As time’s passed, I’ve really begun to appreciate the short and sweet things in life. Short bus rides, instant payments and the time between a Google search and what ever it is I’m looking for. Naturally, this appreciation has extended to the code I read and write. Short arguments, short methods and short classes. Can’t…