11-03-2008, 12:40 PM
|
#2 (permalink)
|
|
The Wanderer
Join Date: Mar 2008
Posts: 20
Thanks: 0
|
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 />"; }
|
|
|
|