hmm, It doesn't work.
// works, but only if i values don't repeat in the table,
// if they do, any other occurance of it is ignored.
for ($i=0; $i<count($row); $i++) {
echo $row[$i]."<br>";
}
// works only for values of 1 in the table even if they
// repeat.
for ($i=0; $i<count($row)...