First Upate System:
$ sudo apt update
$ sudo apt upgrade -y
Install Apache:
<?php | |
function randomLetter($size) | |
{ | |
$bag = "A BC DEF G HIJKLL MNOP QRS TUV W XUZ "; | |
$key = array(); | |
$bagsize = strlen($bag) - 1; | |
for ($i = 0; $i < $size; $i++) | |
{ | |
$get = rand(0, $bagsize); |
/** | |
* @return bool | |
*/ | |
protected function buildPDF() | |
{ | |
if(class_exists('TCPDF')) | |
{ | |
$template = $this->getTemplate('pdf.html'); // your function to get the html table | |
// convert product object to placeholders | |
$placeholders = array(); |