Categories

Post under category: Development

Getting Started: How the Interwebs Work

There are a ton of places on the web to learn HTML, so I kind of wonder why I am writing this in the first place. I think that it was important in my quest to learn how to program that I was looking ahead at what I would be able to do, because the stuff I made at first was less than impressive.This is a guide to hopefully help Read More

jQuery Form Validation: theory and practice

jQuery Form Validation: theory and practice

jQuery makes it very easy to validate forms. There are a number of useful plugins, the most prominent being validate. If you are wanting something very lightweight or are just interested in how something like this works, read on. The $.each function allows you to iterate over collections in jQuery, it is really one of the most useful utility methods available. We can iterate over all input elements on a Read More

Zend Framework on Apache 1.3.x

If you are having problems with the .htaccess file for Zend Framework and getting 500 errors, and are running apache 1.3.x (like at GoDaddy), add a slash before index.php in the rewrite rule.Here is one of my htaccess files for reference<IfModule mod_expires.c> ExpiresActive On ExpiresByType text/html "access plus 1 seconds" ExpiresByType image/gif "access plus 2 years" ExpiresByType image/jpeg "access plus 2 years" ExpiresByType image/png "access plus 2 years" ExpiresByType text/css Read More