Possible Duplicate:
Generating PDFs with PHP
how to transfer data from table to pdf? or is there other ways to print reports from table this is my current table i want it to transfer on pdf
$tbl_select_exp=mysql_query("select * from expeditures where Date between '$date1' and '$date2' and active= '1' order by Date ASC");
while($test = mysql_fetch_array($tbl_select_exp))
{
?><tr id="<?php echo $test['ExpenseID'] ?>" onclick="a(this.id); myfunction(this)">
<?php
echo"<td>".$test['Date']."</td>";
echo"<td>".$test['ORno']."</td>";
echo"<td>".$test['AccountName']."</td>";
echo"<td>".$test['Amount']."</td>";
echo "</tr>";
$test++;
}