Subscribe to...
Posts
Comments

Archive for the 'Web Development' Category

This is just a quick PHP tip I’d like to share. It’s called the Tertiary Operator. It’s basically a way to simplify simple(and complex) if statements into one liners!
Say for example you have a conditional statement like:

Code (php)
<?php
if (5 > 10)
{
        echo ‘The world is ending.’;
}
else
{
        echo […]

Read Full Post »

Magento is an open source eCommerce solution built on the Zend Framework. I came across Magento when a client wanted to create an eCommerce solution to his brick and mortar herbal store that he had here in Toronto.

I knew that building an eCommerce website from scratch was not a real viable solution as eCommerce […]

Read Full Post »