sintax63 Posted November 5, 2007 Share Posted November 5, 2007 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 Link to comment https://forums.phpfreaks.com/topic/76083-solved-counting-down-using-table-entry-number/ Share on other sites More sharing options...
fenway Posted November 5, 2007 Share Posted November 5, 2007 Well, the number 101 is arbitrary -- so you know it -- a COUNT(*) will give you other #. Link to comment https://forums.phpfreaks.com/topic/76083-solved-counting-down-using-table-entry-number/#findComment-385149 Share on other sites More sharing options...
sintax63 Posted November 6, 2007 Author Share Posted November 6, 2007 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! Link to comment https://forums.phpfreaks.com/topic/76083-solved-counting-down-using-table-entry-number/#findComment-385722 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.