assume that i have table structure like below
location|name
-------------
NY|john
London|neil
NY|clair
i retrieve the info using
SELECT * FROM table
view file is similar to:
<table>
<tr><td>location</td><td>name</td>
<?php foreach($rows as $row):>
<tr><td><?=$row->location></td><td><?=$row->name></td>
<?php endforeach;>
</table>
as you can guess, it outputs every column of a row multiple times.
what i actually want is, i want to list them as,
NY
john
clair
London
neil
it would also be great if i can use alternating colors between NY and London.
ps: i have too many things to group, simple workarounds will not fit.
thanks