Jump to content

[SOLVED] Counting Down Using Table Entry Number


sintax63

Recommended Posts

I am trying to set up a "Only XX To Go!" on my web page counting down from the number 101 against the number of entries in my table. For instance, I currently have 7 entries in my table so I would like it to say "Only 94 To Go!"

 

Would anyone be able to help me out or point me in the right direction for this?

 

Thanks in advance,

Abraham

I figured this out yesterday shortly after Fenway gave me that tip:

 

$count 	= mysql_result(mysql_query("SELECT COUNT(*) FROM field"),0);
$total 	= 101;
$number	= $total - $count;

 

... and then in my HTML:

 

Only <?php echo "$number"; ?> To Go!

 

 

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.