Category: Web Development

Online Church Management

  |   By  |  5 Comments

A website is a powerful tool for churches to advertise who they are, where they are and what they do. It’s also a great medium for Church administration. The Gateway Church uses WordPress to drive our website and I’ve written a powerful administration plugin to help manage Church life. It contains an address book with […]

Continue reading...

Using cron to send bulk email on a shared host

  |   By  |  4 Comments

I’m running a conference booking system at www.togetherconference.com and we need to send out lots of emails to delegates and potential delegates. Our host uk2.net only allows 100 emails per hour from the website, so I needed to find a way of queueing them and sending in batches… First a mysql db table… CREATE TABLE […]

Continue reading...

Checking table1 connects to table2

  |   By  |  0 Comments

Duplicating data in a database table is a waste of space, so if table1 has some column information repeated frequently then transfer that to a second table and use an id to store in table1 – that’s called normalisation As an example, I have a conference booking system where delegates where all booking in from […]

Continue reading...

Simple Browser Detection

  |   By  |  0 Comments

I wanted a simple and fast PHP browser detector for a script recently. Most scripts are either very out of date or huge and look for every single browser possible.  Here’s a simple one that will return the major ones. function browser_detect(){ //simple major browser detection //returns an array 0=>browser name and version,1=>browser name, 2=>Version […]

Continue reading...