Quote:
03-23-03 at 12:35 PM Steve123 said this in Post #79
Add Photo To Profile..
I dident add the approval system because i know i will never use it, but its easy to encode if someone needs it..
This is the first time ive modded a hack before, so dont scream at me if im doin it wrong 
member.php
Just Before
PHP Code:
eval("dooutput(\"".gettemplate("getinfo")."\");");
}
// ############################### start aim message ###############################
Add
PHP Code:
$checkphoto = $DB_site->query_first("SELECT comments,visible FROM memberphoto WHERE userid='$userinfo[userid]'");
if($checkphoto){
$profilephoto = "<img src=\"memberpics/photo$userinfo[userid]_$userinfo[photonum].$userinfo[phototype]\">";
} else {
$profilephoto = "$userinfo[username] hasen't uploaded a photo yet.";
}
if($checkphoto['comments'] != ""){
$photomessage = $checkphoto['comments'];
}
Then in your getinfo Template put
Code:
$profilephoto<br> $photomessage
Where you want the photo to appear..
|
very awesome just what i needed, ok one more question, not sure if you've seen the viportfolio hack, it's wedged in beta hacks, anyway there you get the ability for every use to have their own mini gallery available from their profile, if there anyway to adapt this to enable it to let you do that?