Ok, I'm gonna suggest that instead of using explode to get the next ID of the file, I suggest you use $_GET to get it first? Use that again, and to determine the next image, you should SQL query the table to see the next ID you need to get.
I'm gonna give an example...
<?php
// Let's say we use $_GET['id'] for the ID of the image. The URL would be [...]/img.php?id=7 for our example.
$id = $_GET['id'];
$result = mysql_query("SELECT * FROM `pictures` WHERE `picture_id` = '$id'");
// We'll use mysql_fetch_row to get the current image...
$image = mysql_fetch_row($result);
// Insert the code to fetch the code you want from the array
// And as for the next and previous image...
$next = mysql_query("SELECT `picture_id` FROM `pictures` WHERE `picture_id` > '$id' LIMIT 1"); // LIMIT 1 will tell it we only want to get 1 ID that is bigger than the current one (meaning, the next one will automatically be the next ID in the table)
$nextlink = mysql_fetch_row($next);
// Next link should link to pic.php?id=$nextlink[0]
// Same for previous, only with the opposite comparison
$prev = mysql_query("SELECT `picture_id` FROM `pictures` WHERE `picture_id` < '$id' LIMIT 1");
$prevlink = mysql_fetch_row($prev);
// Link to $prevlink[0]
?>
There's probably a better way to do this, but that's the best I can come up with right now =P sorry.