https://www.icyphoenix.com/viewtopic.php?f=26&t=2815&p=19777#p19777
-----------------------------------
Sorren
Tue 18 Sep, 2007 14:33

Re: Personal Photo Gallerie In Viewprofile
-----------------------------------
Yes i get one mistake, and i can't solve it. It was this:
[code]Could not count pics[/code]

and i searched this in my code and find this rows:
[code]// ------------------------------------ 
// Count Pics 
// ------------------------------------ 

$sql = "SELECT COUNT(pic_id) AS count 
      FROM ". ALBUM_TABLE ." 
      WHERE pic_cat_id = ". PERSONAL_GALLERY ." 
         AND pic_user_id = $user_id"; 
if( !($result = $db->sql_query($sql)) ) 
{ 
   message_die(GENERAL_ERROR, 'Could not count pics', '', __LINE__, __FILE__, $sql); 
} 

$row = $db->sql_fetchrow($result); 

$total_pics = $row['count'];[/code]


