Update for CodingBiz:
I\'m putting this in my code:
for($i=1;$i<=$numRows;$i++) {
$output .= \'\';
$row = $this
-
i'd try replacing the data part with something like:
while($row = $this->fetchAssoc($colResult))
{
echo "";
foreach($row as $value)
{
echo sprintf("%s ",$value)
}
echo " ";
}
i know it's not a proper answer, but it's really hard to read that code imho
- 热议问题