I have a script that displays a report, can I make this into a PDF, I get the concept behind the PDF generation, but don't know if this is possible or not. Here is what I am trying to put into a PDF.
mysql_connect("");
mysql_select_db("");
$query = "SELECT * FROM KEYCAD WHERE HOLD LIKE 'Y' AND ACTIVE LIKE 'Y' AND DEACTIVATE LIKE '0'";
$result = mysql_query($query);
while($row = mysql_fetch_array($result)) {
//Display results here
}
Any help appreciated.