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
Share on other sites

  • 2 months later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.