PHP code example of thipages / quicktable
1. Go to this page and download the library: Download thipages/quicktable 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/ */
thipages / quicktable example snippets
create($headers,$cells,tableAttributes=[]);
$data=[
['Lucien',23],
['Paul',12],
['Hippolyte ',3]
];
$table=QTable::create(
['name','age'],
$data,
['border'=>1]
);
echo($table);