Here's a basic script, assuming you have something to host it on:
<?php $n=1; $id=$_GET['id']; if(!isset($_GET['id'])) $id=1 ?>
<img src="<?php echo($id);?>.png" alt="404 text" /><br />
<?php if ($id>1) { echo("<a href=".($id-1).">"); }?>
<img src="previous.png" alt="<-">
<?php if ($id>1) { echo("</a>"); }?>
<?php if ($id<$n) { echo("<a href=".($id-1).">"); }?>
<img src="next.png" alt="->">
<?php if ($id>1) { echo("</a>"); }?>
replace $n=1 by the number of strips you made, and save them as number.png.