squiblo Posted September 24, 2009 Share Posted September 24, 2009 i want to echo the result number by the side of each result but i do not no how to do this, $checkbox is the variable i want to hold the number... <?php $query = mysql_query("SELECT * FROM mail WHERE pageid='$pageid'"); while ($row = mysql_fetch_assoc($query)){ $subject = $row['subject']; $message = $row['message']; $from = $row['from']; $when = $row['when']; $checkbox = 1++; echo "<tr><td>$checkbox - $subject - $message</td></tr>"; } ?> Link to comment https://forums.phpfreaks.com/topic/175430-solved-echo-incrementing-number/ Share on other sites More sharing options...
Alex Posted September 24, 2009 Share Posted September 24, 2009 $checkbox = 1; while ($row = mysql_fetch_assoc($query)){ $subject = $row['subject']; $message = $row['message']; $from = $row['from']; $when = $row['when']; echo "<tr><td>$checkbox - $subject - $message</td></tr>"; $checkbox++; } $var++; is used to increment a number. Link to comment https://forums.phpfreaks.com/topic/175430-solved-echo-incrementing-number/#findComment-924485 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.