What's the best way to allow full image access to one and only one album/directory and normal or restricted access to all other albums?
For example, I'm creating an album for a recent outing and want full image access in that album but not the rest of my gallery. What's the easiest way to do this? Thanks for the help.
Comments
`
if (public image album) {
$link = getUnprotectedImageURL();
} else {
$link = getProtectedImageURL();
}
echo html_encode($link);
`