Thanks for the quick replies, so I made a duplicate page called "imagefull.php", basically it is a copy of slideshow.php with the printSlideShow lines removed. I figured this was a good place to start based on the tutorial.
in the <head> of this file I put sbillard's code with a few extra lines to make a variable for the current image.
`
<?php
$image = newImage(NULL, array('folder'=>sanitize($_GET['album'],'filename'=>sanitize($_GET['image']));
$image = makeImageCurrent($image);
$fullimgurl = getFullImageURL();
?>
`
then to start with getting the full image in there I put something like:
`
[img]<?php echo html_encode($fullimgurl) ?>[/img]
`
in the body.
to switch to the imagefull page from the image.php page I would just have an href like:
`
FULL
`
One problem is that the album is actually a subalbum, so "album/subalbum" gets thrown into the URL. Not sure where I am going wrong, I'm learning more advanced PHP as I go here.
having a sloppy URL is not really a big deal, since the full size pages are duplicates. I can always add mod_rewrites to the .htaccess later.
Thanks again, I think I am really close!