Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im trying to make an sql function that displays the highest value however all the variations of the MAX function i use, still turn up with an empty image. What's going on here? how do i fix this?

//displays no image and doesn't give any errors

$result = mysql_query("SELECT MAX(id) AS id FROM people") or die (mysql_error());

//displays image 87

$result = mysql_query("SELECT  * FROM people WHERE id = 87") or die (mysql_error());

enter image description here

share|improve this question

1 Answer

up vote 7 down vote accepted

It shouldn't display an image, it should give a result of 87.

See MAX

You could do:

select * from people order by id desc limit 0, 1 

which should give you the latest image by ID.

To make this dynamic and allow a next button you would need to store the value of image being viewed. When the next button is clicked you could then do

select * from people order by id desc limit 1, 1 //Start at row 1, bring back 1.

See MySQL Limit

You would need to use PHP to assign the values in limit and your next link though. To do this you would need to have link like so:

<a href="www.mysite.com/page?imagecount=1">Next</a>

Then using PHP you could:

<?php
    if (isset($_GET["imagecount"]))
        $next = (int)$_GET["imagecount"]; //Don't forget the (int) cast to avoid SQL injection!!!
    else
        $next = 0;

   $result = mysql_query("select * from people order by id desc limit $next, 1") or die(mysql_error());
?>

TO expand on the link, you could then make your link dynamic:

<a href="www.mysite.com/page?imagecount=<?php echo $next+1; ?>">Next</a>
share|improve this answer
Well that was easy. Thanks. – neat Dec 6 '12 at 11:45
How would i get it to display the next value in the database with a next button! – neat Dec 6 '12 at 11:46
just change limit 1,1 – Manatax Dec 6 '12 at 11:47
1  
I think it's LIMIT 1,1 for next value, not 1,2. – Vucko Dec 6 '12 at 11:48
@Vucko You are correct. – webnoob Dec 6 '12 at 11:48
show 11 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.