Apache mod_rewrite and Short Urls - What you really want to know.

I recently opened up an old .htaccess and I was struck with the memory of how much it sucked trying to Google search for some real, working, answers on making short urls. So here you go, my quick tip on what you really want to know about mod_rewrite. If you want an actual explanation of what is going on here it’s at the bottom. Rewrite Conditions # File: .htaccess # File Location: / RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !...

January 9, 2009 · David Schreck

EAV Modeling with PHP & MySQL

Entity-Attribute-Value (EAV) modeling is a way to store data in a flexible way. This article describes how to implement EAV in PHP and MySQL.

August 28, 2008 · David Schreck