Generating attendance list in PDF using PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T12:15:50Zhttp://stackoverflow.com/feeds/question/549635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/549635/generating-attendance-list-in-pdf-using-php1Generating attendance list in PDF using PHPunknown (google)2009-02-14T19:26:07Z2009-02-14T23:36:39Z
<p>Hi I want to create an attandence list from the student's database in PDF using PHP. I want the columns student.name, student_id, student_rollno and a column for sign for signing to be made as table in pdf. How can I do this?</p>
http://stackoverflow.com/questions/549635/generating-attendance-list-in-pdf-using-php/549661#5496610Answer by trex279 for Generating attendance list in PDF using PHPtrex2792009-02-14T19:37:30Z2009-02-14T19:37:30Z<p>You could use the <a href="http://in.php.net/pdf" rel="nofollow">pdflib</a> extension for php to do this.</p>
<p>Take a look at <a href="http://www.sitepoint.com/article/generate-pdfs-php/" rel="nofollow">this tutorial</a> for more details.</p>
http://stackoverflow.com/questions/549635/generating-attendance-list-in-pdf-using-php/549663#5496631Answer by superUntitled for Generating attendance list in PDF using PHPsuperUntitled2009-02-14T19:38:25Z2009-02-14T19:45:09Z<p>I recommend TCPDF.
<a href="http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf" rel="nofollow">http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf</a></p>
<p>It is a library that converts html to pdf, so you would run your db query in php and output the results in html. You can reference the php file that generates the html with a tcpdf function.</p>
<p>See examples here:
<a href="http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf_examples" rel="nofollow">http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf_examples</a></p>
<p>/////////////////////</p>
<p>You can also use the DOMPDF:
<a href="http://www.digitaljunkies.ca/dompdf/" rel="nofollow">http://www.digitaljunkies.ca/dompdf/</a>
It is a little more recent than tcpdf and a little easier to use</p>
http://stackoverflow.com/questions/549635/generating-attendance-list-in-pdf-using-php/549666#5496665Answer by Karim for Generating attendance list in PDF using PHPKarim2009-02-14T19:39:04Z2009-02-14T19:39:04Z<p>Well, this is a somewhat general question but I'll take the PDF part at least and offer up the following PHP class : <a href="http://www.tcpdf.org" rel="nofollow">http://www.tcpdf.org</a></p>
<p>This class works without having to enable the pdf extension on your server which is a huge benefit. But beyond that, it also supports simple HTML including the 'table' tag. If you know HTML, you can generate simple PDFs based on that knowledge.</p>
<p>Once you've retrieved the data from your database, it's really just a matter of assembling an HTML string:</p>
<pre><code>$html = '<table>';
foreach ($results as $student) {
$html .= '<tr><td>'.$student->name.'</td></tr>';
}
$html .= '</table>';
$tcpdf->writeHtml($html);
</code></pre>
<p>...etc. </p>
<p>A full fledged example of the writeHtml method can be found here:
<a href="http://www.tecnick.com/pagefiles/tcpdf/example_006.phps" rel="nofollow">http://www.tecnick.com/pagefiles/tcpdf/example_006.phps</a></p>
<p>How you retrieve the data is very much dependent on your project.</p>
http://stackoverflow.com/questions/549635/generating-attendance-list-in-pdf-using-php/549669#5496690Answer by tHeSiD for Generating attendance list in PDF using PHPtHeSiD2009-02-14T19:41:27Z2009-02-14T19:41:27Z<p>You can use the PDF library in PHP</p>
<p>You will need to use the functions</p>
<pre><code>string PDF_fit_table ( resource $pdfdoc , int $table , float $llx , float $lly , float $urx , float $ury , string $optlist )
int PDF_add_table_cell ( resource $pdfdoc , int $table , int $column , int $row , string $text , string $optlist )
</code></pre>
<p>you can also try <a href="http://www.fpdf.org/" rel="nofollow">FPDF</a>, Check out this <a href="http://www.fpdf.org/en/tutorial/index.php" rel="nofollow">tutorial</a>. Basically, you need to output your database results in the form of a table. </p>
<p>Other Alternatives :
<a href="http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf" rel="nofollow">TCPDF</a>, <a href="http://www.ros.co.nz/pdf/" rel="nofollow">EZPDF</a></p>
http://stackoverflow.com/questions/549635/generating-attendance-list-in-pdf-using-php/549995#5499950Answer by dusoft for Generating attendance list in PDF using PHPdusoft2009-02-14T23:36:39Z2009-02-14T23:36:39Z<p>go for FPDF, <a href="http://www.fpdf.org/" rel="nofollow">http://www.fpdf.org/</a> - the best thing that is there...</p>