Apr 15, 2009
OAuth allows you to share your private online resources (photos, videos, contact list, bank accounts etc..) stored on one site with another site without having to hand out your username and password. There are many reasons why you should not share your private …
Apr 7, 2009
Over the coming weeks I’m going to be writing some posts on object orientated programming in PHP5, but to get us started there are a few techniques that we need to know, so today I’m going to be looking at variable variables.
Naming conventions are really important …
Apr 2, 2009
When we write code we love to format it nicely adding tabs, line breaks and indentations, but the end user isn’t interested in how lovely the source code is, they just want the page content, so this script strips out all the line breaks and spaces in your code and …
Mar 31, 2009
Here’s a short but sweet list of a few of the best business cards that I’ve come across on the internet for a bit of design inspiration. I often find things like this useful and often fill the gaps on a design project, especially if you get designers block which i …
Mar 24, 2009
This is just a quick introduction for beginners getting started with PHP and using while loops. You will quickly find that while loops are used regularly to cycle through specific data.
So here’s a little code snippet of a simple while loop in action.