2022-02-26 01:34:21 +01:00
2022-02-23 18:22:52 +01:00

phpxpress

The following code

$employees = array($employee1,$employee2,$employee3);

$table = new Table;
$table->setDataSource($employees);
$table->setCustomCaptions(array("Name", "Surname", "Date of Birth", "Social Security Number"));
$table->setStripedRows(true);
$table->setBordered(true);
$table->setHoverAnimation(true);
$table->draw();

Produces the following output Demo

Description
PHP library which builds Bootstrap elements programmatically, with dynamic events support
Readme 1.2 MiB
Languages
PHP 100%