Home Blog Portfolio Development Contact Us Recommends
Building One Application at a Time

Archive for the ‘Web Development’ Category

Free Shipping Per Product CRE Loaded/OSCommerce

Friday, February 19th, 2010

So, one day I found a need to have free shipping “per product” for CRE Loaded/OSCommerce.  First I search for it and found a couple candidates that seemed like they would do the job.  (more…)

Using Pages to Hold Content for a Wordpress Template Page

Thursday, April 9th, 2009

I have been using pages to hold content in Wordpress templates for some time now.  The problem I have with it is that every time I need to perform such an action I cannot remember how to do it nor where I have done it before. (more…)

Checking If A Data Set Is Set When A Value Is NULL

Wednesday, February 25th, 2009

When setting a field in a MySQL database to be NULL by default you may run into NULL values in your dataset when querying the database.  You cannot simply check if a variable is set using the isset() function in PHP because it returns false for NULL values.  To remedy this issue you can use the array_key_exists(‘key’, $dataset) to check if the key exists in the array.

Good to know!

PHP Framework phpOpenFW

Tuesday, June 3rd, 2008

I never really thought about using a framework for PHP.  Mostly because I know PHP’s native functions well enough to create anything I needed from scratch.  The problem is time consumption with repetitive code and writing it out every time I needed it.
(more…)