Album name? Album name?
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Album name?

Started by matiseijas, March 16, 2004, 06:00:40 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

matiseijas

Hello, is there a PHP variable that gives me the name of the album the pic belongs to?

Nibbler

I dont know if this already exists, but it's quite a simple function to make:


function which_album($pid)
{
global $CONFIG;
$result = db_query ("SELECT a.title as title FROM {$CONFIG['TABLE_ALBUMS']} as a,{$CONFIG['TABLE_PICTURES']} as p WHERE p.pid = $pid AND a.aid = p.aid");
$row = mysql_fetch_array($result);
return $row['title'];
}

weegee

Works wonderful! Thanks!  ;D