2022-02-23 14:55:53 +01:00
|
|
|
# phpxpress
|
|
|
|
The following code
|
|
|
|
```
|
2022-02-23 18:22:52 +01:00
|
|
|
$employees = array($employee1,$employee2,$employee3);
|
2022-02-23 14:55:53 +01:00
|
|
|
|
2022-02-23 18:22:52 +01:00
|
|
|
$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();
|
2022-02-23 14:55:53 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Produces the following output
|
2022-02-23 18:22:52 +01:00
|
|
|
<img src="/phpxpress/examples/demoTable.jpg" alt="Demo">
|