PHP library which builds Bootstrap elements programmatically, with dynamic events support
Go to file
Alessandro Ferro 84c65deb49
Update README.md
2022-02-23 18:22:52 +01:00
phpxpress Update table.php 2022-02-23 18:16:09 +01:00
README.md Update README.md 2022-02-23 18:22:52 +01:00

README.md

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