Notice: Undefined offset: 8192 in /home/miphpf/domains/miphpf.com/public_html/includes/common.inc on line 499

Notice: Undefined offset: 8192 in /home/miphpf/domains/miphpf.com/public_html/includes/common.inc on line 506

Warning: Incorrect key file for table './miphpf_miphpfcom/watchdog.MYI'; try to repair it query: INSERT INTO watchdog (uid, type, message, severity, link, location, referer, hostname, timestamp) VALUES (0, 'php', 'preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/miphpf/domains/miphpf.com/public_html/includes/unicode.inc on line 291.', 2, '', 'http://www.miphpf.com/manual/table.html', '', '3.145.47.253', 1713548992) in /home/miphpf/domains/miphpf.com/public_html/includes/database.mysql.inc on line 121
Table | MIPHPF - Your Open Source RAD PHP Framework
Skip navigation.
Home

Table

: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/miphpf/domains/miphpf.com/public_html/includes/unicode.inc on line 291.

miTable implements the table functionality. The various features of the table like sorting, paging, filtering are implemented as separate classes. Each of these features can be added to the table.

Usually the miDataManager is responsible for adding the sorter, the pager, the filter and messenger features.

Example for creating table and adding features:

<?php
$table
= new miTable();
new
miTableSorter($table);
new
miTableMessage($table);
?>

The following table features are included in MIPHPF:
miTableFilters - implements filtering (searching)
miTableCustomParams - implements passing of query (GET) params around
miTableMessage - implements displaying of message
miTablePager - implements paging
miTableSorter - implements sorting