View Single Post
Old 11-03-2008, 12:40 PM   #2 (permalink)
Schroder
The Wanderer
 
Schroder's Avatar
 
Join Date: Mar 2008
Posts: 20
Thanks: 0
Schroder is on a distinguished road
Default

I think the problem is that the variables are case sensitive. So changing the first instance to uppercase should fix the problem.

PHP Code:
          $val mysql_query("SELECT MAX(point) FROM `points`")or die(mysql_error());
          while(
$able mysql_fetch_array($val))
          {
          echo 
$able['MAX(point)']."<br />";
          } 
Schroder is offline  
Reply With Quote