i have this in in members.php after if(action == "editprofile") {
PHP Code:
$usess = $bbuserinfo[0];
$showgal1 = mysql_query("SELECT *
FROM dmf_images
WHERE user_id='$usess'
");
while ($showgal = mysql_fetch_array($showgal1)) {
$thumbid = $showgal['0'];
$gal = "<img src=thumb.php?id=$thumbid border=0>";
}
global $gal;
global $thumbid;
now this some what works! surprisingly to me
however, if i do in my template i'm suing do $gal it only does ONE image....
i need it to do all the images that person has uploaded. Any ideas on this one?
thanks