Category Archives: Programming

Google’s PacMan Game is Still Online

For those who loved it, you can play Google’s tribute to PacMan at http://www.google.com/pacman. While we’re talking about it, I’d like to point out that the PacMan game relies on HTML, CSS and JavaScript. No Adobe Flash used here. A … Continue reading

Posted in Gaming, Programming | Leave a comment

How to prevent multiple form submissions in PHP

A problem that many programmers encounter is trying to prevent the user from submitting a form twice and inadvertently posting two sets of the same data – or in worse scenarios, charging a credit card twice! It’s a frustrating problem … Continue reading

Posted in Programming | Tagged , | Leave a comment

How to use SSL / HTTPS effectively in your PHP website

So, you’ve got a big website with thousands of members, it brings in $50 a day, and your community couldn’t be happier. What could be better? HTTPS could be better. There’s just something so exciting about that little padlock appearing … Continue reading

Posted in Programming | Tagged , | 5 Comments

How to avoid the SPAM filters with PHP mail()

Its a coder’s worst nightmare – sending emails from scripts! I can’t think of anything I dread more when designing a website, somehow whatever I learned the last time I did it has changed drastically whenever I decide to do … Continue reading

Posted in Programming | Leave a comment

Flaws in PHP sessions – session_start causes site to run slowly

PHP is a versatile language that gives the programmer many tools to get the job done. One such tool is sessions, but in some cases sessions can have a detrimental effect on your site’s performance. Since switching from a Windows … Continue reading

Posted in Programming | Tagged | 3 Comments

Review: PHP Expert Editor – Script Editing Tool

For anybody coding or wanting to code in PHP, a decent editor is vital. Sticking with old-fashioned notepad just won’t cut it, what you need is the mothership of editors – and I think I’ve found it! PHP Expert Editor … Continue reading

Posted in Programming, Reviews | Tagged | Leave a comment

(Part 1) PHP & MySQL: How to create a resource system

One of the biggest problems faced with content rich websites is how to store the data than enriches them. Therefore, I’d like to offer my solution – something I call ‘the resource system’. Specifically, this is designed for PHP & … Continue reading

Posted in Programming | Tagged , | Leave a comment

9 Tips To Speed Up MySQL Tables

In designing my content enriched website, I quickly discovered that trying to handle large quantities of data is a real bottle neck that can be a pain to overcome. So here’s a few (unorganised) tips that I think will help:

Posted in Programming | Tagged | Leave a comment