Articles
Backup, Backup, Backup!
Over the past couple of weeks I have helped out many people who have been hacked. There are many ways in which you can protect your site, but the most…

Over the past couple of weeks I have helped out many people who have been hacked. There are many ways in which you can protect your site, but the most…
In the old days of web programming, everyone use to lay things out with tables. Not so much, anymore. Today, if you are in the know, div tags and CSS…
While developing a site for a client, I needed to figure out a way to convert certain text elements into images. I had no clue how to do this but…
I decided my sidebar was looking a little plain. It needed something more than just ads, so I placed a list of my popular posts there. I think it looks…
Ever needed to check if a number is even or odd? If so, here is a pretty simple piece of code that does just that.
<?php $num = 13; if($num&1)…
I know that the way most people treat multiple forms on one page is to have each form post to another PHP file where the form is validated, its information…
I just came across an issue where I needed to make sure that the text within a <pre> tag wrapped. The default for this tag it to just let the…
I just needed to do this for a client’s site to set an expiration date for a user and I thought it might be something that other programmers might like…
Justin Shattuck put together Comment Relish a while back but didn’t really have the time to work out all the kinks. I had solved a few issues with the plugin…