I'm trying to get this to make 20 rows of 5 colums each and I'm
continuing to get errors. Any idea what's wrong? Here's the code:
<table width='100%' border='0'>
<tr>
<td width='100%' align='center'>
<table>
<?php
$text = ' area code';
for($i = 0; $i < 10; $i++)
{
for($j = 0; $j < 10; $j++)
{
if($j == 4)
{
echo("<tr><td width='225px'>");
}
echo($html->link($firstNumber . $i. $j . $text , "/AreaCodes/
detail/". $firstNumber . $i. $j, array('class'=>'area_code_link')));
echo(" ");
}
echo("</td></tr>");
}
?>
</table>
</td>
</tr>
</table>
<?
}
?>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---
No comments:
Post a Comment