Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having issues trying to get more than one record to display in an HTML Table. I have used HTML tables because, even after going through all the examples I could think to check, I couldn't figure out how I could make more than 1 row of a table to repeat using Cell(). I am not going to even pretend that I know what I am doing and my knowledge of PHP is a little above beginner's level but the guy who was working on this project died and I've had to step up and take over.

Using the examples and the forum, this is what I have got so far (it's not pretty but it's about as good as I can get it with my limited knowledge):

<?php
    $pdf->setPrintHeader(false);
    $pdf->setPrintFooter(false);
    $pdf->SetAutoPageBreak(false);

    // Connect to CandidateDB or Die
    $conn_cand = mysql_connect('mysql_server', 'mysql_user', 'mysql_pass');

    if(!$conn_cand) {
            die('Could not connect: ' . mysql_error());
    }

    // Select the Database to use
    mysql_select_db('rdbcandidates', $conn_cand);
    mysql_query("SET NAMES utf8");

    //Select the candidate's Education History to display
    $education = mysql_query('SELECT eduid, institution, qualification, subjects, dateachieved, status FROM cand_edu_details WHERE candidate = ' . $_GET['cid'] . ' AND status = 1 ORDER BY dateachieved DESC', $conn_cand) or die('Could not retrieve education record: ' . mysql_error());
    $totalRows_education = mysql_num_rows($education);

    $pdf->SetFont('Verdana', '', '10','','','');

    if($totalRows_education > 0) {
        $edustart=0;
        $eduswap=1;

        while($row_education = mysql_fetch_array($education)) {

            // Select the Database to use
            mysql_select_db('rdbcandidates', $conn_cand);
            mysql_query("SET NAMES utf8");

            // Get the Qualification Name
            $qualification = mysql_query('SELECT qualification, field FROM cand_edu_qual WHERE qualid="' . $row_education['qualification'] . '"', $conn_cand) or die('Could not retrieve qualification: ' . mysql_error());
            $row_qualification = mysql_fetch_array($qualification);
            $totalRows_qualification = mysql_num_rows($qualification);

            $qualname = $row_qualification['qualification'];
            $inst = $row_education['institution'];
            $dtachieved = $row_education['dateachieved'];
            $subs = $row_education['subjects'];

            // Populate the table
            $candedubody = '<td><table width="100%" border="0">
                <tr><td width="190" nowrap="nowrap"><font size="-1"><b>Qualification Obtained:</b></font></td><td><font size="-1">' . $qualname . '</font></td></tr>
                <tr><td width="190" nowrap="nowrap"><font size="-1"><b>Institution:</b></font></td><td><font size="-1">' . $inst . '</font></td></tr>
                <tr><td width="190" nowrap="nowrap"><font size="-1"><b>Date Achieved:</b></font></td><td><font size="-1">' . $dtachieved . '</font></td></tr>
                <tr><td width="190" nowrap="nowrap"><font size="-1"><b>Subjects:</b></font></td><td class="text0down"><font size="-1">' . $subs . '</font></td></tr>
                <tr><td class="text0downb">&nbsp;</td><td class="text0down">&nbsp;</td></tr>
            </table></td>';

            $edustart = $edustart+1;
            if($edustart == $eduswap) {
                $candedubody = $candedubody . '</tr><tr>';
                $edustart=0;
            }

            mysql_free_result($qualification);

        }
        $candedu = '<table width="100%" border="0"><tr>' . $candedubody . '</tr></table>';

    } elseif($totalRows_education == 0) {

        $candedu = '<table width="100%" border="0"><tr><td>&nbsp;</td></tr><tr><td align="center"><font size="-1">No qualifications to display</font></td></tr></table>';

    }
    mysql_free_result($education);

    // Select the Database to use
    mysql_select_db('rdbcandidates', $conn_cand);

    //Select the candidate's Education History to display
    $sproficiency = mysql_query("SELECT * FROM cand_edu_swprof WHERE candid = " . $_GET['cid'], $conn_cand) or die('Could not retrieve software name:' . mysql_error());
    $totalRows_sproficiency = mysql_num_rows($sproficiency);

    if($totalRows_sproficiency > 0) {
        $sprofstart=0;
        $sprofswap=1;

        while($row_sproficiency = mysql_fetch_array($sproficiency)) {

            // Select the Database to use
            mysql_select_db('rdbcandidates', $conn_cand);
            mysql_query("SET NAMES utf8");

            // Get the Qualification Name
            $software = mysql_query('SELECT * FROM cand_edu_software WHERE swid = "' . $row_sproficiency['packageid'] . '"', $conn_cand) or die('Could not retrive software title:' . mysql_error());
            $row_software = mysql_fetch_assoc($software);
            $totalRows_software = mysql_num_rows($software);

            $pack = $row_software['package'];
            $prof = $row_sproficiency['proficiency'];

            // Populate the table
            $sprofbody = '<td>' . $pack . '</td><td width="36" align="right"><img src="http://media.rossdb.net/generic/swprof_' . $prof . '.png" height="12" border="0" /></td>';

            $sprofstart = $sprofstart+1;
            if($sprofstart == $sprofswap) {
                $sprofbody = $sprofbody . '</tr><tr>';
                $sprofstart=0;
            }

            mysql_free_result($software);

        }
        $sprof = '<table width="100%" border="0"><tr>' . $sprofbody . '</tr></table>';

    } elseif($totalRows_sproficiency == 0) {

        $sprof = '<table width="100%" border="0"><tr><td>&nbsp;</td></tr><tr><td align="center" class="text1downb">No software proficiency to display</td></tr></table>';

    }
    mysql_free_result($sproficiency);

    $html = '<table border="0" cellpadding="0" cellpadding="0">
        <tr><td colspan="2" align="left"><font color="#4F81BD" size="+2"><b>Education &amp; Qualifications</b></font></td></tr>
        <tr><td width="70%" align="left"><font color="#4F81BD"><b>Education &amp; Training</b></font></td><td width="35%" align="left"><font color="#4F81BD"><b>Software Proficiency</b></font></td></tr>
        <tr><td>' . $candedu . '</td><td>' . $sprof . '</td></tr>
    </table>';

    // print a block of text using Write()
    $pdf->writeHTML($html, true, false, true, false, '');
?>

Sorry for the long code snippet but I didn't want to remove anything that could possibly be my problem.

Right, when I was working on the layout, I used standard PHP, which gives me this (which is what I want):

What I want

After adapting it as above, I get this:

What I get

You will notice there are two records for this candidate in each section (this changes from candidate to candidate, hence I need the code to adapt on the fly) but it is only displaying the first record. I got the layout working exactly as I wanted it to in PHP and have been adapting it thru trial-and-error and a LOT of reading and I managed to get this far but now I am stumped (I was stumped 5 days ago but I have run out of things to try now).

The code is part of a much larger page but everything, up to now, is working fine. If you want me to send you the entire page, please feel free to send me youe e-mail address and I will do so. Any help would be an absolute Godsend.

Again, thank you for your time.

share|improve this question
1  
Paste the output of $html right before calling writeHTML() to pastie.org and then paste the link here, so we can see if the generated html is ok.. – Nelson Oct 26 '12 at 13:53
Your code seems fine, make sure you are receiving a valid $_GET['cid'] as that it's the only thing I see can give you an empty sql result set. – Nelson Oct 26 '12 at 16:00
Sorry for not getting back to you on this until now. The issue has been identified (an obvious error that I would never have picked up). Instead of appending each consecutive record to the table, I was overwriting each record with the next one, leaving only the last retrieved record to displayed. I was adapting example code that my late friend wrote for me and this vulnerability only became apparent when TCPDF came into play. I'm sorry for wasting your time but I greatly appreciate your attempting to help me. – UbuntuElphie Oct 29 '12 at 11:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.