Package:
Summary:
Generate a pseudo random string
Groups:
Author:
Description:
This class can be used to generate a pseudo random string.
It generates a sequence of pseudo-random character using a matrix pre-defined randomized set of characters.
The resulting random string can be used as new matrix of randomized characters.
Package:
Summary:
Get an hash for a string from an array of values
Groups:
Author:
Description:
This class can be used to get an hash for a string from an array of values.
It takes as parameter an array of hash values.
The class takes a string as argument and returns the same entry from the hash array values for each string argument.
Package:
Summary:
Display a tree view that uses AJAX
Groups:
Author:
Description:
This class can be used to display a tree view that uses AJAX.
The TreeView Class is designed for larger trees , which cannot be loaded completely at once. Only one branch is sent by an AJAX request. The tree and its icons are controlled by a css file and its using a self referencing hierarchical MySql table. A user javascript function can be passed to act at a branch click.
Package:
Summary:
Template engine for CSS style sheet files
Groups:
Author:
Description:
This class implements a template engine for CSS style sheet files.
It reads a CSS style sheet template file that may have definitions of styles assigned to variables. The variables may be used in the definition of other styles.
The class expands the definition of all variables and stores the processed CSS style sheet in a cache file.
OOCSS creates a new way to write CSS files in a new Object style fashion. Using Parent/Child relationships and predefined variables, you will be able to produce rapid CSS that is not only easier to maintain and read, is more intuitive as well.
Package:
Summary:
Retrieve data from a MySQL table into XML
Groups:
Author:
Description:
This class can be used to retrieve data from a MySQL table into a XML document.
It can execute a query to retrieve all data from a given MySQL database table.
The class generates a XML document from the data retrieved from the table. The XML document is displayed as the output of the current script.
Package:
Summary:
Manage a shopping cart stored in a MySQL database
Groups:
Author:
Description:
This class can be used to manage a shopping cart stored in a MySQL database.
It can perform several types of operations to manage the product items in a shopping cart by manipulating the respective records stored in a MySQL database table. Currently it can:
- Add an item
- Get the items
- Update the quantity of an item
- Delete an item
- Empty the cart
- Get the product price and name of an item
Package:
Summary:
Manage a shopping cart stored in a MySQL database
Groups:
Author:
Description:
This class can be used to manage a shopping cart stored in a MySQL database.
It can perform several types of operations to manage the product items in a shopping cart by manipulating the respective records stored in a MySQL database table. Currently it can:
- Add an item
- Get the items
- Update the quantity of an item
- Delete an item
- Empty the cart
- Get the product price and name of an item
Package:
Summary:
Retrieve the listing of files of a given directory
Groups:
Author:
Description:
This class can be used to retrieve the listing of files of a given directory.
It can traverse a given directory recursively and extract the listing of files into an array.
The listing of files may be sorted by name, type and size.
Package:
Summary:
MySQL database query wrapper
Groups:
Author:
Description:
This class is a MySQL database query wrapper.
It wraps the execution of SELECT, INSERT, UPDATE and DELETE queries.
The results from SELECT queries are gathered in a single array with values stripped from any slashes.
Package:
Summary:
Microsoft SQL server database access wrapper
Groups:
Author:
Description:
This package implements a wrapper to access Microsoft SQL server databases.
There is one class that takes care of establishing connections to a given SQL server host.
Another class can perform regular database access operations such as executing SQL queries, retrieve query results into arrays, execute common queries or stored procedures given a list of parameters.