Forum Moderators: coopster
<?php
echo <<<END
<img src="$imagename"><br><table>
<tr>
<td><a href="archive.php?comic=1">First</a></td>
<td><a href="archive.php?comic=--$comic">Previous</a></td>
<td><a href="archive.php?comic=++$comic">Next</a></td>
<td><a href="archive.php?comic=$maxcomics">Last</a></td>
</table>
END;
?>
It's Previous and Next that I can't figure out. Is it it the echo method I'm using? Or can you not add to variables like that?