Try this:

<table>
<?php
echo $html->tableHeaders(array('col1','col2'));
echo $html->tableCells(array('row1a','row1b'));
echo $html->tableCells(array('row2a','row2b'));
?>
</table>

HTH,
Eric


On 2/19/07, thequietlab <[EMAIL PROTECTED]> wrote:
>
>
> Hi!
>
> my piece of code looks like this :
>
> <?php
> echo $html->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 row2b'
>
> I'm not sure what's wrong .. can anybody help ?
>
> i.e. $html->link('title','/some_page'); works fine generating link as
> it should
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to