Forum Moderators: coopster
<img src='$image' border='0' alt='$alt'> image.php?image=9&alt=optional alt text or image.php?image=9.jpg&alt=optional alt text .Can i put the alt text somehow? // for the url image.php?image=9
$image_n = $_GET['image'];
$image_n++;
echo "<a href=\"$image_n\"> Next Image </a>";
// for the url image.php?image=9.jpg
$image_x = explode(".",$_GET['image']);
$image_n = $image_x[0];
$image_n++;
$image_n = $image_n.".".$image_x[0];
echo "<a href=\"$image_n\"> Next Image </a>";
$image_n = $_GET['image'];
$image_n++;
$image_n_i="?image=$image_n";
echo "<font style='font-family: $fontface; font-size: 10pt;'><a href=\"$image_n_i\">Next image</a>";