These files show various programming techniques to access MySQL
databases. Most samples need PHP >= 5.0.3 and the mysqli extension, as
well as MySQL >= 4.1. The stored procedure samples need MySQL >=
5.0.2. Only mysql-intro.php and phpinfo.php also run with older
versions of PHP and MySQL.

To make the samples work, you must change the login and password
strings in the following files:

- mysql-intro.php
- mysqli-intro.php
- password.php

Overview

phpinfo.php           	tests, which PHP extensions are available
mysql-intro.php       	presents the mysql extension
mysqli-intro.php      	presents the mysqli extentsion
mysqli-prepared.php   	sample for a prepared statement
mysqli-table.php      	formats a SELECT result as HTML table

mydb.php              	definition for the class MyDb
test-mydb.php         	test of the class MyDB
password.php          	passwort data for MyDb

categories.php        	administrate categories for mylibrary 
find.php              	find titles for mylibrary
titleform.php         	input new titles for mylibrary

formfunctions.php       helper functions to create HTML forms
mylibraryfunctions.php  helper functions for categories.php,
                        find.php and titleform.php

deletegarbage.php       deletes invalid entries from mylibrary

*.css                   various CSS files

optimize/*              speed optimization sample
images/*                image upload sample
unicode/*               unicode variant of the mylibrary samples
