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
- Host: GitHub
- URL: https://github.com/thipages/quicktable
- Owner: thipages
- License: mit
- Created: 2020-04-11T16:02:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-09T22:13:33.000Z (almost 5 years ago)
- Last Synced: 2025-06-22T17:52:50.830Z (8 months ago)
- Topics: html, php, quick, table
- Language: PHP
- Size: 6.84 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```