I have the following code:
$query = "SELECT ctr_value from w3t_counter WHERE ctr_id=1";
$result = mysql_query($query);
$number = mysql_fetch_array($result);
$counter = $number['ctr_value'];
echo "<br><center>$counter</center>";
echo "</td></tr>$tbclose<br />"; // Close Content and End Table
$ctr = $counter++;
$addition = "UPDATE w3t_counter SET ctr_value='$ctr' where ctr_id=1";
This will grab the value from the database, but not up the number by one.
Any help is appreciated...my Benedryl kicked in and I cannot concentrate too much, heh.