Generating attendance list in PDF using PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T12:15:50Z http://stackoverflow.com/feeds/question/549635 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/549635/generating-attendance-list-in-pdf-using-php 1 Generating attendance list in PDF using PHP unknown (google) 2009-02-14T19:26:07Z 2009-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#549661 0 Answer by trex279 for Generating attendance list in PDF using PHP trex279 2009-02-14T19:37:30Z 2009-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#549663 1 Answer by superUntitled for Generating attendance list in PDF using PHP superUntitled 2009-02-14T19:38:25Z 2009-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#549666 5 Answer by Karim for Generating attendance list in PDF using PHP Karim 2009-02-14T19:39:04Z 2009-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 = '&lt;table&gt;'; foreach ($results as $student) { $html .= '&lt;tr&gt;&lt;td&gt;'.$student-&gt;name.'&lt;/td&gt;&lt;/tr&gt;'; } $html .= '&lt;/table&gt;'; $tcpdf-&gt;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#549669 0 Answer by tHeSiD for Generating attendance list in PDF using PHP tHeSiD 2009-02-14T19:41:27Z 2009-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#549995 0 Answer by dusoft for Generating attendance list in PDF using PHP dusoft 2009-02-14T23:36:39Z 2009-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>