How do I get the picture or title and user name in the (album.php, album_showpage.php) album title of the website. Can someone help me in this regard?



I have self found it:

OPEN album_showpage.php

find:
Code: [Download] [Hide] [Select]
$page_title = $lang['Album'];


replace with:
Code: [Download] [Hide] [Select]
$page_title = $thispic['pic_title'];


or:
Code: [Download] [Hide] [Select]
$page_title = $lang['Album']. ' - ' . $thispic['pic_title']. ' from ' . $thispic['username'];