Halo Posted April 9, 2008 Share Posted April 9, 2008 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! Quote Link to comment Share on other sites More sharing options...
Richard Posted April 9, 2008 Share Posted April 9, 2008 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? Quote Link to comment Share on other sites More sharing options...
Analog Posted April 9, 2008 Share Posted April 9, 2008 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. Quote Link to comment Share on other sites More sharing options...
Zero-Affect Posted April 9, 2008 Share Posted April 9, 2008 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! Quote Link to comment Share on other sites More sharing options...
Zero-Affect Posted April 9, 2008 Share Posted April 9, 2008 Re: View User Addon - Profile Views i was written mine has he posted lol mine does take away the fact that when you view your profile it doesn't count though so yeah i added that extra i guess lol Quote Link to comment Share on other sites More sharing options...
Haunted Dawg Posted April 9, 2008 Share Posted April 9, 2008 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. Quote Link to comment Share on other sites More sharing options...
Zero-Affect Posted April 9, 2008 Share Posted April 9, 2008 Re: View User Addon - Profile Views ah yeah fair comment mate. Quote Link to comment Share on other sites More sharing options...
oxidati0n Posted April 9, 2008 Share Posted April 9, 2008 Re: View User Addon - Profile Views Here's a good version for it. Query: You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. Profile: You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. Simple as. Quote Link to comment Share on other sites More sharing options...
Haunted Dawg Posted April 9, 2008 Share Posted April 9, 2008 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'].' '; Quote Link to comment Share on other sites More sharing options...
Halo Posted April 10, 2008 Author Share Posted April 10, 2008 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.