Monthly Archive:: May 2011

21 May 2011

My thoughts behind Hull KR TV and its nomination for a prestigious Royal Television Society Award

I’ve been actively developing Hull KR TV since it’s launch in 2010, so to find out it has been nominated for an award is fantastic news!! I couldn’t be happier about it. When Hull KR TV started
6 May 2011

Building a content management system from scratch

A few people have asked me for links for tutorials on making a cms or have asked me to write one, so I've put together a tutorial on making a cms from the very beginning. The cms
6 May 2011

Newsletter Tutorial Part 2 Sending out HTML and Plain Text Emails

Part 1 (Newsletter Tutorial Part 1 The Signup) looked at setting up a database table to store email address and names and creating a signup for to collect the data.
6 May 2011

Newsletter Tutorial Part 1 The Signup

This newsletter tutorial will show you how to create a newsletter signup form, part 2 will show you how to send out newsletters from your list of users stored in a database.
6 May 2011

Importing CSV (spreadsheet) data into a MySQL Database using PHP

Working with CSV files is very common practice, as such you'll want to add data from spreadsheets into a database, this tutorial will show you how to do just that. For this tutorial where going to work
6 May 2011

Reset Password Script

This tutorial will show you how to create a reset password script.
6 May 2011

Delete rows from a MySQL database with a confirmation

Delete rows from a MySQL database with a confirmation This tutorial shows you how to delete rows from your database and uses a JavaScript powered confirmation basically when you press delete a confirmation message will appear asking
6 May 2011

Login Script with Validation

A login script tutorial to log users into your database driven site using sessions
6 May 2011

Article pagination with OOP (split article into pages)

When you have a long article you may want to split the article into pages. This is easy to do on a static page but what if you have a dynamic page if would be better to
6 May 2011

Create a simple FTP class

FTP is well known to all designers/developers to moves files from a local computer to a remote web server, What if you want to copy a file from one server to another? the recommended choice would be
6 May 2011

Connecting to an imap server using imap_open

php allows you to do a lot of things including reading your email! This IMAP series will show you how to use the built in imap functions that php has to offer. The first is imap_open