File "compteur.php"
Full Path: /home/analogde/www/git/makefont/compteur.php
File size: 1.4 KB
MIME-type: text/x-php
Charset: utf-8
<?php
require('html_table.php');
$htmlTable='
<TABLE>
<TR>
<TD>Jour</TD>
<TD>12H20</TD>
<TD>12H40</TD>
<TD>13H00</TD>
<TD>13H20</TD>
<TD>13H40</TD>
<TD>14H00</TD>
<TD>14H20</TD>
<TD>14H40</TD>
</TR>
<TR>
<TD>07-04</TD>
<TD>unselect</TD>
<TD>unselect</TD>
<TD>AIGOUY Pascal</TD>
<TD>AIGOUY Pascal</TD>
<TD>ANDRE Philippe</TD>
<TD>ANDRE Philippe</TD>
<TD>creneau ouvert</TD>
<TD>creneau ouvert</TD>
</TR>
<TR>
<TD>14-04</TD>
<TD>unselect</TD>
<TD>unselect</TD>
<TD>BASSO Christophe</TD>
<TD>BASSO Christophe</TD>
<TD>BASSO Christophe</TD>
<TD>BASSO Christophe</TD>
<TD>creneau ouvert</TD>
<TD>creneau ouvert</TD>
</TR>
<TR>
<TD>21-04</TD>
<TD>unselect</TD>
<TD>unselect</TD>
<TD>creneau ouvert</TD>
<TD>CUNNAC Loïc</TD>
<TD>CUNNAC Loïc</TD>
<TD>CUNNAC Loïc</TD>
<TD>CUNNAC Loïc</TD>
<TD>creneau ouvert</TD>
</TR>
<TR>
<TD>28-04</TD>
<TD>unselect</TD>
<TD>unselect</TD>
<TD></TD>
<TD></TD>
<TD></TD>
<TD></TD>
<TD></TD>
<TD>BASSO Christophe</TD>
</TR> </TABLE>';
$pdf=new PDF_HTML_Table();
$pdf->AddPage();
$pdf->SetFont("Arial","",10);
$pdf->WriteHTML("Rendez-vous:<BR>$htmlTable<BR>Patrice Delpy 2015.");
$pdf->Output();
?>