Jump to content

mysql and php max()


Tmic

Recommended Posts

Sorry for not being very clear.

 

When I do the following:

 

select max(nr) from table_test;

 

in mysql (via dosprompt) I get the result (f.i. 9)

 

now I try to do the same in php and normally I would do something like this:

 

$select = \"select nr from table_test\";

$result = mysql_query($select);

 

while($row = mysql_fetch_array($result)){

echo $row[\'nr\'];

}

 

but now its not nr but max(nr) but when I change all \'nr\' to \'max(nr)\' it doensnt seem to work.

 

I would like to now how I can get the value of max(nr) into a php variable. I think there is an easy way to do this but I\'m not seeing it.

Link to comment
https://forums.phpfreaks.com/topic/1387-mysql-and-php-max/#findComment-4588
Share on other sites

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.