How can I store a generated TCPDF as a blob in MYSQL? I tried:
$file = new TCPDF('p', 'mm', 'A4');
$file->AddPage();
$file->writeHTMLCell(190, 0, '', '', '<span>some html content</span>');
$pdf = addslashes($file);
$query = 'INSERT INTO '.$this->table.' (file) VALUES ("'.$pdf.'")';
$stmt = $this->conn->prepare($query);
$stmt->execute()
but it stores empty string.