Package:
Summary:
Show MySQL results in pages updated using AJAX
Groups:
Author:
Description:
This class can be used to show MySQL query results in pages with browse links updated using AJAX to avoid page reloading.
It can execute a given MySQL query and display the results in an HTML table.
The table may have headers with links that sort the results when they are clicked.
The listing may also be split in multiple pages with a limited number of result rows. Pagination links are display to let the user browse other query result pages.
AJAX requests are sent to retrieve new pages of results when either the sorting or pagination links are clicked to avoid full page reloading.
Package:
Summary:
Implement enumerated values as class functions
Groups:
Author:
Description:
This class can be used to implement enumerated values as class functions.
It takes the name of a class and the list of names for enumerated values to define and generates code for a new class that defines the enumerated values.
The enumerated values can be retrieved using static function calls to the generated class.
Is your website usable by the blind and the disabled? Find out with the newest free online accessibility validator that has been
added to the Free HTML & CSS Validators,
Broken Link Checkers, Browser Compatibility Checkers page. No installation required; all you need is your web browser.
Not satisfied with the fonts you have? Design your own with the newest program to be added to the
Free Font Editors and Font Creation Software
page. This one, DoubleType, is open source and lets you create TrueType fonts. It works on any system with a Java runtime (eg, Windows,
Mac OS X, Linux, Solaris).
Package:
Summary:
Calculate sine, cosine and tangent of angles
Groups:
Author:
Description:
This class can be used to calculate sine, cosine and tangent of angles.
It can perform calculations compute the sine of an angle from the cosine or tangent values, or the cosine of an angle from the sine or tangent.
Package:
Summary:
Load and merge the data of two CSV files
Groups:
Author:
Description:
This class can be used to load and merge the data of two CSV files.
It can load a CSV file and return an array with the loaded data.
The class can also take the arrays of data of two previously load and link them in order to merge the rows that have the same value of two given columns of each of the CSV files.
It can also add, change and delete rows of a CSV file, as well search for values in its rows.
The comments in the code are in German.
Package:
Summary:
Execute MySQL prepared queries
Groups:
Author:
Description:
This class can be used to execute MySQL prepared queries.
It can prepare and execute MySQL prepared queries using the MySQLi extension.
The query values and types are passed as arrays.
The query results are returned as bi-dimensional arrays.
Package:
Summary:
Display the nodes of a tree in a MySQL database
Groups:
Author:
Description:
This class can be used to display the nodes of a tree in a MySQL database.
It can recursively traverse the nodes of a tree stored in MySQL database table and display the node names in an HTML page.
Package:
Summary:
Display month calendars in HTML tables
Groups:
Author:
Description:
This class can be used to display month calendars in HTML tables.
It can generate HTML tables that display the days of calendar months of whole years.
The class displays links that allow browsing different month calendars using AJAX to avoid page reloading.
Package:
Summary:
Retrieve MySQL query results into arrays
Groups:
Author:
Description:
This is a simple class that can be used to retrieve MySQL query results into arrays.
It can execute a given MySQL SELECT query and retrieves the results into an array.