Hello, I've this code
<STYLE type="text/css">
a.allarme:visited, a.allarme:link, a.allarme:visited
{
//style rules
}
</STYLE>
inside a php script.
When i try to convert in pdf by this code, in another script:
ob_start();
include('file.php');
$content = ob_get_clean();
s.r.l.</H3>";
try
{
$html2pdf = new HTML2PDF('L', 'A4', 'it');
$html2pdf->setDefaultFont('Arial');
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
$html2pdf->Output($mese.'-'.$anno.'.pdf');
}
catch(HTML2PDF_exception $e)
{
echo $e;
exit;
}
i obtain a correct pdf file without the style rules for <a> tags...
can u help me?
regards,
Max