Dompdf

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • santhu76
    New Member
    • Oct 2008
    • 2

    Dompdf

    still facing the problem with dompdf.table is breaking...

    here is the code

    Code:
    <table width="100%" cellpadding="0" cellspacing="0" border="0">
    for ($i=0;$i<50;$i++)
    {
    	<tr>
    
    		<td width="20%" >Balanced Decision Making
    		</td>
    		<td width="80%">
    			<table  width="100%" cellpadding="0" cellspacing="0" border="1" class="collapse">
    			<tr>
    				<td width="90%" >Tell me about a time where you have had limited time to take a critical decision. What were the influencing factors during this time?</td>
    				<td width="10%">&nbsp;</td>
    			</tr>
    											
    			</table>
    		</td>
    									
    	</tr>
    }
    </table>
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    You've posted this question before? Your post count informs me you've only posted once (this post).

    Please use [code] tags when posting code.

    Also, this falls under the 'crappy post' rule. You have to be as informative as possible.

    Markus.

    Comment

    • Atli
      Recognized Expert Expert
      • Nov 2006
      • 5062

      #3
      Hi.

      You are mixing your PHP code with the HTML.
      PHP code needs to be enclosed in <?php ... ?> tags to be read as PHP code.

      Comment

      Working...