Object Oriented Programming using PHP: Cheat Sheet

March 9th, 2010

To make our lives that little bit easier we’ve put together a simple cheat sheet containing the basics of object oriented programming (OOP for short) to help us along the way. This is not a guide on how to use OOP nor will it explain the concepts - it’s merely a reference to use when [...]

PHP/MySQL Programming

Just when exactly will IE6 die a death?

December 5th, 2009

We’re coming to the end of 2009 and nearly approaching the 10 year anniversary of Microsoft Internet Explorer 6. Nearly 10 years on, the much hated web browser is still being used by a whopping 11% of the world.
Obviously, there will be a point when we stop building websites to work in IE6 - in [...]

Website Design

What’s this bmi_SafeAddOnload code all about?

November 16th, 2009

I’ve recently signed up to the Internet tethering option from O2 using the iPhone (due to an outage of broadband) and have discovered something which I thought could never exist - optimised image quality dependant on your Internet connection.
It took me a while to understand what was going on. It niggled me for days before [...]

Website Design

TwonkyMedia Server: Review

May 8th, 2009

For months I’ve been looking for a media streaming solution which works on Apple Mac OSX and Sony Playstation3. There’s an abundance of products available on Windows but a definite lack of options for the Mac user - well at least ones which don’t require advanced knowledge of OSX or messy workarounds.
Until, I stumbled upon [...]

Uncategorized

iPhone Application: Invitation to Tender

April 23rd, 2009

We want to jump on the bandwagon and create our very own iPhone application. We’ve put together a high-level brief (download link below) describing how the application should work and what we require from a developer.
If you’re an iPhone developer and are interested in working with us on this project please contact us or leave [...]

Odds & Sods

HTML email design pointers

April 9th, 2009

There’s a very different technique for creating HTML email compared to traditional web pages due to the very nature of email and the abundance of email clients available. Designers have to step back in time with their techniques to ensure good formatting across the board.
Here’s a few pointers and best practice guidelines to help you [...]

Email Marketing

We’re back - and with a new blogging platform!

March 25th, 2009

Regular visitors will have noticed that we’ve not posted anything for a while (in fact a whole 6 months!). There’s no excuse for this but (I’ll make one anyway), we’ve been rather busy working for our clients over the last few months. However, we’re back and better than ever with a brand new blog platform. [...]

Odds & Sods

.htm vs. .html

August 2nd, 2008

I’m often asked which is better: .htm or .html. This (extremely!) short article discusses the differences between the two file types and which is the correct one to use.
So what’s the difference and which is best?
The short answer
There is none. They are exactly the same.
The long answer
Both .htm and .html are exactly the same and [...]

XHTML/CSS ,

Validating an email address in PHP

May 13th, 2008

A small tutorial and example script to validate the format of an e-mail address. This is very useful when capturing e-mail addresses from visitors.
If you’re using the e-mail address to send out important information then it’s advisable to ask the user to enter it twice, to account for misspelling.
<?php

#email address to validate
$email = “name@domain.com”;

#validate format
if(!eregi(”^[_&a-z0-9-]+(.[_a-z0-9-]+)*@[a-z0-9-]+
(.[a-z0-9-]+)*(.[a-z]{2,4})$”, [...]

PHP/MySQL Programming , ,

Moving email from Microsoft Outlook to Apple Mail using MessageSave

April 4th, 2008

We’re currently moving from PC to Mac and part of this process involves transferring our email from Microsoft Outlook 2004 to Apple Mail. This is by no means a straight forward process when you have 2GB worth of email spanning 7 years! That was until we came across a tool named MessageSave by TechHit! Read on…
For those [...]

Odds & Sods, Web Development Software