Re: Problem with htmlhelper table generators

2007-02-20 Thread thequietlab
That was it ! :) thanks Eric On Feb 20, 12:27 am, "Eric C Blount" <[EMAIL PROTECTED]> wrote: > Try this: > > > echo $html->tableHeaders(array('col1','col2')); > echo $html->tableCells(array('row1a','row1b')); > echo $html->tableCells(array('row2a','row2b')); > ?> > > > HTH, > Eric > > On 2/19/

Re: Problem with htmlhelper table generators

2007-02-19 Thread Eric C Blount
Try this: tableHeaders(array('col1','col2')); echo $html->tableCells(array('row1a','row1b')); echo $html->tableCells(array('row2a','row2b')); ?> HTH, Eric On 2/19/07, thequietlab <[EMAIL PROTECTED]> wrote: > > > Hi! > > my piece of code looks like this : > > echo $html->tableHeaders(array('c

Problem with htmlhelper table generators

2007-02-19 Thread thequietlab
Hi! my piece of code looks like this : tableHeaders(array('col1','col2')); echo $html->tableCells(array('row1a','row1b')); echo $html->tableCells(array('row2a','row2b')); ?> instead of a table I get my values returned as a string (no html formatting) like this : 'col1 col2 row1a row1b row2a row