Category Archives: PHP Tutorials
Creating Tag Links from a Comma Delimited String
In this code snippet you will learn how to create tag links in PHP. Many websites or let’s say Web 2.0 sites use a lot of so called “tags” to create a relevant search based on keywords. I find the … Read More
Recursive Functions in PHP to Manage Single MySql Hierarchy Table
The recursive function is a necessary tool when it comes to creating very deep levels of categories and pages. These functions in fact are one of the best solutions in order to manage deep levels of relationships that are also … Read More
MySql City, State, Zip, Latitude, Longitude Database
Just recently I needed a mysql database table that contained records for city, state, zip, latitude, and longitude coordinates. I needed a complete list of locations since one of my projects involved an ajax location auto populating script. While browsing … Read More
Zend Framework Form Input Submit Value Display
Today I was creating a new login form within the Zend framework. I had ran into a bit of trouble with the display text (value attribute) for the submit element when it came to invoking the Zend_Form_Element_Submit() method within my … Read More