When I run the following script in PHP:
$temp="select max(id) as num from `$album_id`";
$max_id=mysql_query($temp) or die("error");
I get the following when I echo $max_id:
Resource id #4
any idea how to get just a number not resource id #4?
Thanks
Campsoup1988