Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/khaliqgant/tablestrap

PHP classes to easily create tables for twitter bootstrap
https://github.com/khaliqgant/tablestrap

Last synced: 4 days ago
JSON representation

PHP classes to easily create tables for twitter bootstrap

Awesome Lists containing this project

README

        

Tablestrap
==========

PHP classes to easily create tables for twitter bootstrap

An example table:
$table = new \tablestrap\table(array(
(array('id' => '1', 'domain' => 'www.google.com', 'name' => 'site')),
(array('id' => '2', 'domain' => 'www.googles.com', 'name' => 'site2')),
(array('id'=>'3', 'domain'=>'www.googless.com', 'name'=>'site3'))
)
);
An example panel:
$panel = new\tablestrap\panel(array('ID'=>'1', 'name'=>'word', 'status'=>'live')
);