Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jdanek/table-generator

PHP library for generating simple HTML tables
https://github.com/jdanek/table-generator

Last synced: 5 days ago
JSON representation

PHP library for generating simple HTML tables

Awesome Lists containing this project

README

        

TableGenerator
##############

PHP library for generating simple HTML tables

.. contents::

Requirements
************

- PHP 7.1+

Usage example
*************

.. code:: php

setHeaderColumns(['#', 'Name', 'Category', 'Autor']);
$gen->setBodyRows([
[1, 'Lorem ipsum', 'Foo', 'John Doe'],
[2, 'Sed ut perspiciatis', 'Bar', 'Jane Down'],
]);

echo $gen->render();