Category Archives: Programming
Introduction to PHP – Revamped
This was originally posted several months ago. I have updated it and brought it back as I still believe that PHP is one of the world’s most used web-based programming languages. We live in a world dominated by internet, which … Continue reading
Sanitizing User Input: There’s More than You Think
Thousands of websites are constantly under attack by hackers and other malicious users. There are groups on the internet specifically devoted to causing havoc and others who simply want to see what they can get away with. One of the … Continue reading
Globals: What they are, and why not to use them.
If you’ve programmed for a while, you’ve probably heard of the term ‘global variables’. The idea behind global variables is that they are available anywhere in your code, no matter if you are inside a function, class, or any other … Continue reading
How to Build the Ultimate Framework
Many programmers will see this title and laugh. They are right to laugh, because the title promises something that can never be delivered. All sorts of frameworks are out there. In PHP, there are CodeIgniter, Zend, and countless others all … Continue reading
Minimizing your outage when switching hosts.
Every website owner or maintainer will have a point in time when they have to switch where their website is located in terms of physical storage and/or web host. What can you do to minimize the down time? I, like many others, have had … Continue reading