2017 © Pedro Peláez
 

library html-tables-manager

image

northern-lights/html-tables-manager

  • Tuesday, March 6, 2018
  • by xZero707
  • Repository
  • 1 Watchers
  • 1 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

PHP-Tables-Manager

[PHP] HTML Tables manager (Tablesman), (*1)

This project is abandoned in favor of: donquixote/cellbrush, (*2)

--, (*3)

Do you hate HTML tables like I do? Too much complications and code for such a small thing! So I come with idea and solution. PHP Class which makes this process simple and straight forward., (*4)

Installation

composer require xzero707/html-tables-manager

or clone repo and include tablesman.class.php, (*5)

Usage

Basic use (assuming class is loaded and initialized):, (*6)

$table->setOption('class', 'example_table');
$table->setOption('id', 'example_table');
$table->setOption('CODE', "border='1'");
$table->create();
$table->header(array("Header #1", "Header #2", "Header #3"));
$table->row(array("Foo", "Bar", "Foobar"));
$table->row(array("Foo #2", "Bar #2", "Foobar #2"));
$table->footer(array("", "Foobar", ""));
$table->close();

echo implode("", $table->output); // Finaly flush output

br/ For more details and examples, check out example.phpbr/ br/, (*7)

LICENSE AGREEMENT, (*8)

Read it here: LICENSE, (*9)

The Versions

06/03 2018

v2.1.1

2.1.1.0

  Sources   Download

09/11 2017

dev-master

9999999-dev

[PHP] HTML Tables manager (Tablesman library) - Create and customize HTML tables

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.0

 

13/02 2017

v2.1.2

2.1.2.0

[PHP] HTML Tables manager (Tablesman library) - Create and customize HTML tables

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.0