Jump to content

[SOLVED] echo incrementing number


squiblo

Recommended Posts

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

$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.

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.