thipages/quicktable

Quick html table builder

Installs: 21

Dependents: 1

Suggesters: 0

Security: 0

Stars: 3

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/thipages/quicktable

v0.5.0 2020-07-30 07:27 UTC

This package is auto-updated.

Last update: 2025-09-10 08:08:31 UTC


README

Quick Html Table builder

Installation

composer require thipages\quicktable

Usage of QTable class

through the static method create

    create($headers,$cells,tableAttributes=[]);

Example

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