Algorithms Arrays Passwords Uncategorized
Commerce Uncategorized
Databases Abstraction Layers Informix LDAP MS SQL MySQL ODBC PostgreSQL Uncategorized
Date & Time Calculators Conversion Translation Uncategorized
Discussion Chat Forums Guestbooks Polls Uncategorized
Email Validation Uncategorized
External Uncategorized
Files and Directories Uncategorized
Games Uncategorized
Graphics 3-D Graphs Resizing Thumbnails Uncategorized
HTML Forms Menus & Navigation Source Viewers Tables Templates Uncategorized
HTTP Authentication Cookies File Uploading Uncategorized
I18N Uncategorized
Math Uncategorized
Miscellaneous Uncategorized
Searching and Trees Uncategorized
Security Uncategorized
Text Uncategorized
Utilities Calendars Counters Link Checkers Weather Uncategorized
XML Uncategorized
| php sample source codes |
|---|
|
ananse is web crawler that collects links from a website, crawls them and indexes the data into a database for use in searching. This version "ananse v1.1" is the second experimental version of the real "ananse" project. Developed by Devonet Multimedia, Accra, Ghana. http://www.devonet.com
|
|
Sort of a userfriendly var_dump, this function will list any requested variables it can lay its hands on, and collapse the list for you to expand at will. All global variables at the tip of a mouse. If I include this on pages that do not work correctly, the problem never stays hidden for long!
|
|
Search a database with this function. Tables and fields are automatically found and searched. Exclude words or table names if you like (no_search_words.txt, no_search_tables.txt). Please send comments to jim@jarzion.com or <a href='http://www.jarzion.com'>Click Here</a>
|
|
Crawl links on any URL. Just type in the URL and submit... The code extracts all contents from all links on the page and stores them in a text file. Very useful for those considering a fast search mechanism for their site, or those building their own Spider(Crawler)... Please send comments to mynelis@msn.com
|
|
I needed a way of organizing information in a mySQL db. I decided that I would have a column called "parent" which would have in it the ID number of the "parent" of this entry. Meaning that if the ID of "table" were 1, then the parent of "leg" would be set to 1. At the time I did not know it, but this is called a tree. Now I needed to be able to fetch the information OUT of the database. I wanted it to show in a select box, parent[indent]child etc....<p>so, with MUCH help of Michal Baumann of Maryland/Florida, I (she) wrote this (be sure to change it around as much as your heart/program desires/needs):
|