Archive of PHP

Move emails to selected IMAP Folder Thumbnail

Move emails to selected IMAP Folder

Moving email from one IMAP mailbox folder another is a simple process this short tutorial will show you how. First create a form with a list the list will be populated with all the mailbox folders using imap_list. Remember you'll need an open connection to the server first in this example my stream is referenced in $mbox. d60a6f8b167b02d64f6026e8aa0cffd9_000000 The following code will run a

Read MoreView Comments (1)
Display mailbox folders with IMAP using PHP Thumbnail

Display mailbox folders with IMAP using PHP

When using IMAP its likely you will want access to the users mailbox so they can view all their folders. This tutorial will explain how display mailbox folders using imap_list.

Read MoreLeave a Comment
Reading events from an iCal Calendar using PHP Thumbnail

Reading events from an iCal Calendar using PHP

Reading event/calender information from iCal can be very useful this tutorial will show you how to read and use the information in a practical way.

Read MoreView Comments (1)
13Jul2011
Convert mobile number to international format dynamically with php Thumbnail

Convert mobile number to international format dynamically with php

I often need to covert mobile numbers into a UK international format of 44 followed by the number such as 442548951486 the numbers I work with can be in a mixed format some without a starting 0 others with 44 and same with spaces, so I wrote function that will convert a number in any mixture into a standard format quick and easily and as all the code is inside a function is reusable which means converting numbers in bulk is now very easy to do.

Read MoreLeave a Comment
12Jul2011
Category
PHP
Tags
, , , , , ,
Create a DOC file with PHP on the fly Thumbnail

Create a DOC file with PHP on the fly

Ever wanted to save a page to a word doc file? this tutorial shows you just how easy it is to do. Turns out using the very super friendly header tag that's built into php will do the job perfectly.

Read MoreLeave a Comment
Building a content management system from scratch Thumbnail

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 will be really simple all it will consist of is pages that are completely database driven that you can edit existing pages and create new pages.

Read MoreView Comments (2)
06May2011
Newsletter Tutorial Part 2 Sending out HTML and Plain Text Emails Thumbnail

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.

Read MoreView Comments (2)
06May2011
Category
PHP
Tags
,
Newsletter Tutorial Part 1 The Signup Thumbnail

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.

Read MoreView Comments (2)
06May2011
Importing CSV (spreadsheet) data into a MySQL Database using PHP Thumbnail

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 with a sample CSV file, which has the following fields: First Name, Last Name, Email

Read MoreLeave a Comment
06May2011
Category
PHP
Tags
,
Reset Password Script Thumbnail

Reset Password Script

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

Read MoreView Comments (2)