Jump to content

Looping, problem math based?


chestnuth

Recommended Posts

Hi,

 

The while loop below always produces 1 less record that i have in the database. I've checked the sql and it returns the correct number of rows. So i'm guessing the problem is with my while loop? However, i cannot find the problem! not sure if it is because of the math i am doing to give each row an alternate name and thus css formatting etc...

 

Any help would be great!!

 

while($rowName=mysql_fetch_array($resultName))

{

$i++;

            print"<tr class=\"r".($i & 1)."\">";

print"<td  width=\"155\">".$rowcc['data1']."</td>";

print"<td>".$rowcc['data2']."</td>";

print"<td>".$rowcc['Data3']."</td>";

print"<td>".$rowcc['data4']."</td>";

print"<td>".$rowcc['data5']." ".$rowcc['data6']."</td>";

print"<td>".$rowcc['data7']."</td>";

print"</tr>\n";

}

print"</table>";

}

Link to comment
https://forums.phpfreaks.com/topic/96927-looping-problem-math-based/
Share on other sites

  • 2 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.