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_features.html', '', '18.224.0.25', 1713878239) in /home/miphpf/domains/miphpf.com/public_html/includes/database.mysql.inc on line 121
Table features | MIPHPF - Your Open Source RAD PHP Framework
Skip navigation.
Home

Table features

: 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.

Table features are enhancements to the table. There are several predefined features in the framework.

* Table sorting feature

<?php
    $table
= new miTable();
   
// Create the table sorter object
   
new miTableSorter($table);
?>

* Table paging features
<?php
    $table
= new miTable();
   
// Create table pager feature
   
$pager = new miTablePager($table);
   
// Create records per page dropdown
   
new miTableRecordsPerPage($table, $pager);
?>

* Table filtering feature
<?php
    $table
= new miTable();
   
// Create the filtering feature
   
new miTableFilters($table);
?>

* Table message feature
<?php
    $table
= new miTable();
   
// Create the table message feature
   
new miTableMessage($table);
?>