Hi, I want to show content only in certain albums. I can use
'if (defined('THUMBNAILS_PHP') && $_GET['album'] == 41){Content Here}'
but this only shows in album 41. How do I show this content in albums 41 to 51?
well if your code works
if (defined('THUMBNAILS_PHP') && $_GET['album'] == 41){Content Here}
then changing it to
if (defined('THUMBNAILS_PHP') && $_GET['album'] >= 41 && $_GET['album'] <= 51){Content Here}
should do what you want.
Thanks donnoman , That works a treat