mysql_connect('localhost','root','');
mysql_select_db('db_enrollment');
<?php
require('fpdf.php');
class PDF extends FPDF
{
// Page header
function Header()
{
// Logo
//$this->Image('logo.jpg',22,10,160);
// Arial bold 15
$this->SetFont('Arial','B',15);
// Move to the right
$this->Cell(80);
// Line break
$this->Ln(20);
}
$result=mysql_query("select * from omr_result");
// Page footer
function Footer()
{
// Position at 1.5 cm from bottom
$this->SetY(-15);
// Arial italic 8
$this->SetFont('Arial','I',8);
}
}
$pdf = new PDF();
$pdf->AliasNbPages();
$pdf->Output();
?>
i have a code to export mysql table as a pdf but there is a error in line 24