![]() |
|
get email address from current album owner - 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: get email address from current album owner (/thread-8941.html) |
get email address from current album owner - tunafish - 2011-08-05 Are there some functions to get the owners email address from the currently active album? I need to get the email address from an external page so: require_once("../../zp-core/template-functions.php"); zp_load_album($_POST['album']); function returnOwner() {
} ` Now how can I get the email address? get email address from current album owner - acrylian - 2011-08-05 http://www.zenphoto.org/documentation/classes/Zenphoto_Administrator.html Btw, you might want to sanitize the POST value for your own security.... get email address from current album owner - sbillard - 2011-08-05
Note that there is no guarantee that such owner actually exists, so you may bet back get email address from current album owner - tunafish - 2011-08-05 That's great. Thanks a lot acrylian :-) |