Nibbler's Random Photo Avatar based on owner Nibbler's Random Photo Avatar based on owner
 

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

Nibbler's Random Photo Avatar based on owner

Started by Carver, February 15, 2005, 07:16:54 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Carver

Nibbler, was kind enough to share his random image script with me that he uses to create his avatar on this site. It works great so good in fact that everyone on my site seems to want to be able to do the same thing and use a random thumbnail from their gallery for their avatar.

I am php challenged and while I understand what I need to do I am not able to get it spelled out in working code.

This is the basic query that is ran now
$result = mysql_query("SELECT filename,filepath from cpg132_pictures WHERE
approved='YES' AND aid <> 111 and owner_name='Carver'ORDER BY RAND() DESC LIMIT 1");
$row = mysql_fetch_array($result);


What would be needed to have this recognize the user and load only the thumbnails he/she owns with out having to use the where clause " owner_name='Carver'" but based on the member's id

Hope I am explaining this so you can follow along...

Thanks