Jump to content

[SOLVED] How to get ++ to work in a $list table


Greaser9780

Recommended Posts

This is my code:

while($r=mysql_fetch_array($sql1))

{

$rank=1;

$list = "<table>";

$list .="<td width='61'>$rank </td>;

$list .="<td width='150' align='left'>".$r['name']."</TD>";

$list .="<td width='150' align='left'>".$r['1pick']."</td>";

$list .="<td width='50' align='left'>".$r['1pos']."</td>";

$list .="</table>";

 

echo $list;

}

 

How can I incorporate $rank++ so that my rank continues to 2 on the 2nd listing?

$rank=1;
while($r=mysql_fetch_array($sql1)){
$list = "<table>";
$list .="<td width='61'>$rank </td>;
$list .="<td width='150' align='left'>".$r['name']."</TD>";
$list .="<td width='150' align='left'>".$r['1pick']."</td>";
$list .="<td width='50' align='left'>".$r['1pos']."</td>";
$list .="</table>";

$rank++;
echo $list;
}

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.