![]() |
|
Display full size version of albumThumb - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Display full size version of albumThumb (/thread-1409.html) |
Display full size version of albumThumb - tcserpa - 2007-05-01 I would appreciate some help figuring out how to display the full size version of the selected album thumb image on a given album page. I have looked at the template functions until my eyes crossed and can't quite figure it out. Thanks in advance. Display full size version of albumThumb - jlang - 2007-05-01 I use the following code (not to imply that it's the only or even a good way to do it.) Display full size version of albumThumb - tcserpa - 2007-05-02 jlang: Thanks for the reply, but that was not quite the answer i was looking for. That looks like the standard code for displaying an image on an image page, and does not seem to work properly on an ALBUM page because i cannot tell it which FullImageURL() to get. What i really want is the file referenced by this code: I am hoping i do not need to resort to a SQL query. Those hurt my head. Display full size version of albumThumb - tcserpa - 2007-05-02 so close. i wrote this function thing that looks like it should be giving me back the right info:
$query = sprintf("SELECT a.folder, a.title, a.thumb, i.desc
// Perform Query $result = mysql_query($query); // Check result if (!$result) {
} // Use result while ($row = mysql_fetch_assoc($result)) {
} // Free the resources associated with the result set mysql_free_result($result); }
crazy! |