Jump to content
MakeWebGames

View User Addon - Profile Views


Halo

Recommended Posts

I was looking in Monocountry and i liked the idea of PROFILE VIEWS.

The easiest mod ever

V1

QUERY

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

Add in viewuser.php

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

Then add:

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

V2

QUERY IS SAME AS ABOVE

Add in viewuser.php

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

Then add:

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

And your done!

Link to comment
Share on other sites

Re: View User Addon - Profile Views

 

Im not sure if im wrong, but wouldnt that set the viewers profile views as +1, not the person's profile being viewed?

correct, it would +1 the person viewing the profile...

should be...

v1

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

v2

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

Link to comment
Share on other sites

Re: View User Addon - Profile Views

right i looked at this and thought why should it see how many times u have viewed someones profile when better option would be to see how many times someones viewed your profile so i did a little edit hope you don't mine, also like to add that i never tested this so if it doesn't work please let me know and ill fix it.

V2

QUERY

Code:

ALTER TABLE `users` ADD `pviews` INT (11) NOT NULL DEFAULT '0';

Add in viewuser.php

Code:

if($userid == $r['userid'])

{

}

else

{

$db->query ("UPDATE users SET pviews=pviews+1 WHERE userid={$r['userid']}");

}

Then add:

Code:

Profile Views : {$r['pviews']}

 

And your done!

Link to comment
Share on other sites

Re: View User Addon - Profile Views

 

right i looked at this and thought why should it see how many times u have viewed someones profile when better option would be to see how many times someones viewed your profile so i did a little edit hope you don't mine, also like to add that i never tested this so if it doesn't work please let me know and ill fix it.

V2

QUERY

Code:

ALTER TABLE `users` ADD `pviews` INT (11) NOT NULL DEFAULT '0';

Add in viewuser.php

Code:

if($userid == $r['userid'])

{

}

else

{

$db->query ("UPDATE users SET pviews=pviews+1 WHERE userid={$r['userid']}");

}

Then add:

Code:

Profile Views : {$r['pviews']}

 

And your done!

You tell me my codes are bad?

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

Link to comment
Share on other sites

Re: View User Addon - Profile Views

Thats to much :|

why not:

if($_SESSION['profile_viewed'][$_GET['u']] != 'true')

mysql_query("UPDATE `users` SET `profile_views` = `profile_views` + '1' WHERE `userid` = '{$r['userid']}'");

$_SESSION['profile_viewed'][$_GET] = 'true';

echo 'Profile Views: '.$r['profile_views'].'

';

Link to comment
Share on other sites

Re: View User Addon - Profile Views

 

Im not sure if im wrong, but wouldnt that set the viewers profile views as +1, not the person's profile being viewed?

correct, it would +1 the person viewing the profile...

should be...

v1

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

v2

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

Whoops, thanks for the fix was half asleep when i did that

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...