https://github.com/khaliqgant/tablestrap
PHP classes to easily create tables for twitter bootstrap
https://github.com/khaliqgant/tablestrap
Last synced: 5 months ago
JSON representation
PHP classes to easily create tables for twitter bootstrap
- Host: GitHub
- URL: https://github.com/khaliqgant/tablestrap
- Owner: khaliqgant
- Created: 2012-06-11T17:42:36.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-06-27T23:34:46.000Z (about 13 years ago)
- Last Synced: 2025-01-06T13:37:03.422Z (6 months ago)
- Language: PHP
- Size: 133 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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')
);