Category Archives: php

Simplified PHP $_POST data handling

When posting data from a form to a page, the $_POST variable gets set to an array similar to this: Array ([name] => “daniel”, [state] => “illinois”, [phone] => “630-618-9588″) Now, one way to process this is to know in … Continue reading

Posted in development, php | Tagged , , , , | 2 Comments

Pagination PHP script

Here is a nice, simple way to add pagination to a site with many items using PHP. This code will allow you to display your content normally, or automatically create pagination if the content exceeds a set number of items. … Continue reading

Posted in development, php | Tagged , | 2 Comments

AJAX Contact form

UPDATED 2/23/2010 Here I am, over a year later, shaking my head at my bulky code. Here is the updated, much more lightweight, drop-in AJAX contact form. It now uses JQuery, the JQuery Forms Plugin, and the JQuery Validation Plugin … Continue reading

Posted in Design, development, php, web 2.0 | Tagged , , , , | 8 Comments

Streamlining development

Time management is key in any business position, whether you are a receptionist for a law firm, or a sole-proprietor in a web development company. I’m going to assume that as a constant in any business discussion. There have been … Continue reading

Posted in css, development, php, web 2.0 | Tagged , , | Leave a comment

Easy CSS/php default image

In the process of developing an e commerce shopping cart, I had the need to make sure an image was displayed at all times… even if the link is broken for some reason. This easy solution will make sure that … Continue reading

Posted in css, development, php | Tagged , , , | Leave a comment