New to php and need to format a php page from html statement

Posted by Peter D on Stack Overflow See other posts from Stack Overflow or by Peter D
Published on 2010-12-27T00:30:02Z Indexed on 2010/12/27 0:53 UTC
Read the original article Hit count: 235

Filed under:
|
|

My problem is the page shows a vertical line of options. I want to put them into a 4 column table to display instead of just down lhs of page. The code I want to change is as follows:

</tr>
<tr>
  <td>{LOOP: JOBTYPE}
    IF("{JOBTYPE.parent_id}"!="0"){&nbsp; {:IF}
    IF("{JOBTYPE.catcount}"=="0"){<input type="checkbox" name="jobtype[{JOBTYPE.id}]"  value="{JOBTYPE.id}" {JOBTYPE.selected}>{JOBTYPE.title}<br>{:IF}
  IF("{JOBTYPE.catcount}"!="0"){<strong>{JOBTYPE.title}</strong><br>{:IF}
  {/LOOP: JOBTYPE}</td>
</tr>

<tr>
  <td>&nbsp;</td>
</tr>

As you can see I have another column there and can split cell further but i would like the job list to be displayed accross the page not vertically. Thank you in advance, Peter

© Stack Overflow or respective owner

Related posts about php

Related posts about html