Articles

Html and plain text multipart email

Thursday 1st July 2010, 09:31 PM
How to send a html email with an alternative plain text equivalent for display on email clients unable to handle html, using php.
Read more...

Allowing large file uploads in PHP

Tuesday 9th February 2010, 07:43 PM
When creating an interface for uploading files to a server through a website, there are limitations in place in the PHP configuration that you must be aware of.
Read more...

Google Apps to discontinue support for Internet Explorer 6

Tuesday 2nd February 2010, 11:15 PM
Google have announced that from March 1st 2010, their Google Docs Suite and Google Sites Editor Applications they will no longer be supporting IE6 and other older browsers that are no longer supported by their manufacturers.
Read more...

Showing all errors with PHP

Friday 22nd January 2010, 06:33 PM
When developing a site with PHP, it can be a great testing tool to be able to see any errors resulting from your code. Sometimes the default server php configuration hides these errors, but you can show them with a couple of extra lines of code
Read more...

Displaying a shortened Block of Text with PHP

Monday 16th November 2009, 09:26 PM
From time to time, I find myself wanting to display a certain amount of text, like and intro or snippet, from a much larger one. This could be a description or intro for an article, or news item for use on a landing page or latest news widget. For dynamic websites, where content is pulled in automatically from a database, this could cause a bit of problem.
Read more...

Opening a new window with Unobtrusive Javascript

Sunday 8th November 2009, 04:07 PM
According to the W3C Specifications, XHTML should only deal with information displayed in a browser window. Basically, opening a new window is something that does not relate to the current window, and therefore XHTML should not perform this action.
Read more...