PHP code example of thijzer / html-builder
1. Go to this page and download the library: Download thijzer/html-builder library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thijzer / html-builder example snippets
$table = new \HtmlBuilder\Table();
$table->setData($dataSet);
$table
->add('#', 'rowcount')
->add('title')
->add('status_code')
->add('h1_count')
->add('frequency')
->add('links_text', 'arrayCount')
->add('visited', 'boolean')
->add('absolute_url', 'link')
;
$table->render()