HTML Code:
<Table>
<Tr>
<Td>My Title</td>
</tr>
<Tr>
<Td>1. hello</td>
</tr>
<Tr>
<Td>2. hi</td>
</tr>
<Tr>
<Td>3. bye</td>
</tr>
<Tr>
<Td> My 2nd Title</td>
</tr>
<Tr>
<Td>1. ,,dfd,</td>
</tr>
<Tr>
<Td>2. llddfl
You can use this way or Your Array
PHP Code:
<?php
echo "<Table>";
while(list($key, $val) = each($array_name))
{
echo "<tr><Td>".$val.</td></tr>
}
echo "</table>";
?>

Originally Posted by
KSclans
I need a box(es) that have one title and muti content like this
My Title
1. hello
2. hi
3. bye
My 2nd Title
1. ,,dfd,
2. llddfl
something like that... and i create a table for this kind of table name ol (CSS div class)
and have field name title content
but I have 3 content (maybe more depend on what users want)
should I have 3 row for the array ? like
name title content
----------------------------------
clanwebs HI hello
clanwebs HI hi
clanwebs Hi bye
but in array how do I tell the browser that row that have the same title is one box
for each box that have 1 title and 1 content
I select the boxes that belong to the user
SELECT subtitle, byline, content FROM post WHERE `name` ='clanwebs'");
but what i put for 1 title and muti content?
how do i select "the same" title ...