TCPDF
TCPDF copied to clipboard
Undefined Keys
PHP Warning: Undefined array key "startx" in tcpdf.php on line 19753 PHP Warning: Undefined array key "startpage" in tcpdf.php on line 19500
etc.
At the function call $pdf->writeHTML($setTable, true, true, true, true, 'left');
See also my email at June 7th for more details.
See also my email at June 7th for more details.
Email to who ?
What is your TCPDF version ? What is your PHP version ?
Can you provide more example code or the value of setTable
?
Hi William,
Thanks for your e-mail.
Below your requested information with more details.
PHP version is 8.0.28 and TCPDF is version 6.6.2
In the function call I use the $pdfTable variable which I describe below: $pdf->writeHTML($setTable, true, true, true, true, 'left'); This is one of the pdf files:

The following warnings I got into my logfile, could you please help?
Many thanks in advance. PHP message: PHP Warning: Undefined array key "startx" in tcpdf.php on line 19753
$pdfTable = ‘
FACTUUR
- YW
</ul>
<br>
<br>
<br>
<br>
<table style="width:100%;">
<tbody>
<tr>
<td width="100" >Debiteur</td>
<td width="200" >Factuur</td>
<td width="101" >Datum</td>
<td width="150" align="rigth">Referentie</td>
</tr>
<tr>
<td width="100" >S-0001</td>
<td width="200" >tst_230607110613</td>
<td width="101" >07-06-2023</td>
<td width="150" align="rigth">1686129133-01-10048-00613</td>
</tr>
</tbody>
</table>
<br>
<br>
<br>
<br>
<br>
<br>
<div>
<table style="border: 1px solid black;width:100%;">
<tbody>
<tr>
<td width="100"><strong>Product</strong></td>
<td width="251"><strong>Omschrijving</strong></td>
<td width="50" align="rigth"><strong>Aantal</strong></td>
<td width="75" align="rigth"><strong>Prijs (EUR)</strong></td>
<td width="75" align="rigth"><strong>Totaal (EUR)</strong></td>
</tr>
<tr>
<td width="100">2CON2021-01-L</td>
<td width="251">Persoonlijke Stijl (DISC) Profiel</td>
<td width="50" align="rigth">1</td>
<td width="75" align="rigth">85,00</td>
<td width="75" align="rigth">85,00</td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
</tbody>
</table>
</div>
<br>
<br>
<br>
<br>
<div>
<table style="border: 1px solid black;width:100%;">
<tbody>
<tr>
<td width="476"><strong> Subtotaal</strong></td>
<td width="75" align="rigth"><strong>85,00</strong></td>
</tr>
<tr>
<td width="476"><strong> BTW 21%</strong></td>
<td width="75" align="rigth"><strong>17,85</strong></td>
</tr>
<tr>
<td width="476"><strong> Totaal</strong></td>
<td width="75" align="rigth"><strong>102,85</strong></td>
</tr>
<tr></tr>
<tr></tr>
</tbody>
</table>
</div>
<br>
<br>
<br>
<br>
<table style="width:100%">
<tbody>
<tr>
<td>Betalingsconditie</td>
</tr>
<tr>
<td>iDeal</td>
</tr>
<tr></tr>
<tr></tr>
</tbody>
</table>
<hr><br>
<style>
p {text-align:center;}
</style>
With Regards, Martin
On 26 Jun 2023, at 13:40, William Desportes @.***> wrote:
See also my email at June 7th for more details.
Email to who ?
What is your TCPDF version ? What is your PHP version ?
Can you provide more example code or the value of setTable ?
— Reply to this email directly, view it on GitHub https://github.com/tecnickcom/TCPDF/issues/629#issuecomment-1607290410, or unsubscribe https://github.com/notifications/unsubscribe-auth/AADTPCFU7UWXJFEIYOTSNRTXNFYKZANCNFSM6AAAAAAZT4XBVM. You are receiving this because you authored the thread.
Everything you post is public on https://github.com/tecnickcom/TCPDF/issues/629 ;) Be sure to scrub sensitive IPs and domains or scrapers will have you soon.
I can reproduce this with:
<?php
$pdfTable = '
<br>
<h2><strong>FACTUUR</strong></h2>
<br>
<br>
<br>
<br>
<ul style="list-style-type:none;">
<li>YW</li>
<li>de heer Martin C.C. de Jong</li>
<li>Kerkstraat 46</li>
<li>6543 KK NIJMEGEN</li>
<li>NETHERLANDS</li>
</ul>
<br>
<br>
<br>
<br>
<table style="width:100%;">
<tbody>
<tr>
<td width="100" >Debiteur</td>
<td width="200" >Factuur</td>
<td width="101" >Datum</td>
<td width="150" align="rigth">Referentie</td>
</tr>
<tr>
<td width="100" >S-0001</td>
<td width="200" >tst_230607110613</td>
<td width="101" >07-06-2023</td>
<td width="150" align="rigth">1686129133-01-10048-00613</td>
</tr>
</tbody>
</table>
<br>
<br>
<br>
<br>
<br>
<br>
<div>
<table style="border: 1px solid black;width:100%;">
<tbody>
<tr>
<td width="100"><strong>Product</strong></td>
<td width="251"><strong>Omschrijving</strong></td>
<td width="50" align="rigth"><strong>Aantal</strong></td>
<td width="75" align="rigth"><strong>Prijs (EUR)</strong></td>
<td width="75" align="rigth"><strong>Totaal (EUR)</strong></td>
</tr>
<tr>
<td width="100">2CON2021-01-L</td>
<td width="251">Persoonlijke Stijl (DISC) Profiel</td>
<td width="50" align="rigth">1</td>
<td width="75" align="rigth">85,00</td>
<td width="75" align="rigth">85,00</td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
</tbody>
</table>
</div>
<br>
<br>
<br>
<br>
<div>
<table style="border: 1px solid black;width:100%;">
<tbody>
<tr>
<td width="476"><strong> Subtotaal</strong></td>
<td width="75" align="rigth"><strong>85,00</strong></td>
</tr>
<tr>
<td width="476"><strong> BTW 21%</strong></td>
<td width="75" align="rigth"><strong>17,85</strong></td>
</tr>
<tr>
<td width="476"><strong> Totaal</strong></td>
<td width="75" align="rigth"><strong>102,85</strong></td>
</tr>
<tr></tr>
<tr></tr>
</tbody>
</table>
</div>
<br>
<br>
<br>
<br>
<table style="width:100%">
<tbody>
<tr>
<td>Betalingsconditie</td>
</tr>
<tr>
<td>iDeal</td>
</tr>
<tr></tr>
<tr></tr>
</tbody>
</table>
<hr><br>
<style>
p {text-align:center;}
</style>
<p>Q4 Profiles | Maarse & Kroon Hof 7 | 1431 PB AALSMEER | 0297 361 484</p>
<p> KvK 34229082 | NL 83 ABNA 0603 929 117 | ABNANL2A | BTW NL8143.91.308.B01</p>';
// Load the autoloader, move one folder back from examples
require_once __DIR__ . '/vendor/autoload.php';
// create new PDF document
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false, true);
$pdf->AddPage();
$pdf->writeHTML($pdfTable, true, true, true, true, 'left');
Outputs
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startcolumn" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19670
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19671
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19674
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19677
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Trying to access array offset on value of type null in vendor/tecnickcom/tcpdf/tcpdf.php on line 19678
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startpage" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19710
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
PHP Warning: Undefined array key "startx" in vendor/tecnickcom/tcpdf/tcpdf.php on line 19930
William,
Thanks, but I can't create a Pull request...can you setup this for me?
Many thanks!
William,
Thanks, but I can't create a Pull request...can you setup this for me?
Many thanks!
I can fix this for you, please email me at williamdes [at] wdes.fr
I am starting to dig into this issue, the minimal code to reproduce the bug is
<?php
$pdfTable = '
<table>
<tbody>
<tr></tr>
</tbody>
</table>';
// Load the autoloader, move one folder back from examples
require_once __DIR__ . '/../vendor/autoload.php';
// create new PDF document
$pdf = new TCPDF();
$pdf->AddPage();
$pdf->writeHTML($pdfTable);
It seems not to like the empty <tr></tr>
Changing <tr></tr>
with <tr><td></td></tr>
makes it work