display php foreach values in div
- by San82moon
Hi,
I have
foreach ($a as $key = $value) {
echo $value;
}
which displays result one below other,
like
1234
5678
2010-05-20
5678
1590
2010-05-19
but i want it in a table like structure like
1234 5678 2010-05-20
5678 1590 2010-05-19
how can i do that?