3. HTML Table Tag Analysis
Helpful for debugging bad HTML code. This program counts the number of opening table tags and how many imbedded tables exist.
4. PREV_123_NEXT function
The logic of this function is based on the prev123next code snippet, but rewritten to return an array of links that can then be ouput anywhere on the page. Also added some boundry checking for the offset variable.
5. PHP function for cleaning up HTML and JavaSctipt code
This is a function for PHP scripts to clean up HTML code before outputting it. The function applies correct indentation to HTML/XHTML 1.0 and JavaScript and makes the output much more readable. You can specify the wanted indentation through the variable $indent
6. Breadcrumbs Navigation
This code will produce a useful navigation resource, showing visitors where they are in your site. This form of navigation is recommended by Jakob Nielson, and it really does make navigation less confusing.
7. Use content from another site
This short script lets you take content from another page and embed it into your own pages. Just put the URL of the page who’s contents you would like and then in the start and finish lines, find something in the original source code that you can use to mark the start and finish cut points.
8. Dynamic List Boxes
Two listboxes filled up with data from two related tables. As the user selects the first listbox, the second listbox changes accordingly.
This code uses mySQL and PHP as well as Javascript. The example tables will be automatically created for you but you have supply the correct database parameters..
9. Display MySQL restult as table
Take a row from a table of images and display thumbnails x number across. Just change the value of $tds to change how many it shows across the row.
10. Url to Hyperlink
This function trasforms a string (or a text) to an hyperlink.
Example: My site is http://www.lolloland.com will be trasformed to: my site is www.lolloland.com.
This function replaces a http, https or www in a text with a html A tag.

