An open API service indexing awesome lists of open source software.

https://github.com/thipages/quicktable

Quick Html Table Builder
https://github.com/thipages/quicktable

html php quick table

Last synced: 7 months ago
JSON representation

Quick Html Table Builder

Awesome Lists containing this project

README

          

# quicktable
Quick Html Table builder

### Installation
**composer** require thipages\quicktable

### Usage of QTable class
through the static method create
```php
create($headers,$cells,tableAttributes=[]);
```

#### Example
```php
$data=[
['Lucien',23],
['Paul',12],
['Hippolyte ',3]
];
$table=QTable::create(
['name','age'],
$data,
['border'=>1]
);
echo($table);
```