I figure out how I can get the next adid using this:
SELECT adid FROM table WHERE adid > $current_adid ORDER BY adid
LIMIT 1
However, I am not sure how to get the previous adid. I tried changing WHERE adid < $current_adid
but it didn't do the trick. What should I use to get a previous record from the SQL table?