Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 02-10-2009, 08:44 PM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Counting Timestamps?

I'm working on that ranking script that I've been asking for the past couple of months...

One of the things I want to do, when I am calculating the rankings... I want to outdate older events... Events are all given a unix timestamp...

I am using the following code to calculate rankings... and so far its working great...

Code:
SELECT * FROM rank_scores 
	INNER JOIN rank_events ON(rank_scores.eventID = rank_events.eventID)
	WHERE rank_scores.playerID = ".$player['playerID']."
	ORDER BY sValue DESC, eDate DESC
As you can see, it takes all the earned scores that match a player's ID, from the rank_scores table (joined to the rank_event table), and sorts them by the highest earned scores and down (and additionally sorts by the event date). What I want to do is add in an extra WHERE statement... something along the lines of...

(currentTime - eDate) < $countDmod months

I defined the $countDmod variable as 12 in my config file. So what this should do, it will take the current date, subtract the date of the event from it... and if the remaining value is less than 12 months; it will add it to the SELECT statement, otherwise skip it.

How do I program this?
Reply With Quote
  #2  
Old 02-11-2009, 05:25 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP Code:
$cutoff strtotime('-12 Months'); 
[sql]SELECT *
FROM rank_scores
INNER JOIN rank_events USING (eventID)
WHERE rank_scores.playerID = $player[playerID]
AND eDate > $cutoff
ORDER BY sValue DESC, eDate DESC[/sql]
Reply With Quote
  #3  
Old 02-11-2009, 10:10 AM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks man! Thats exactly what I am looking for... but now I am having another issue...

I have 3 files...

/includes/config.php
/includes/function_player.php
/player.php

2 variables are declared and set in config.php: $countEmod and $countDmod...

config.php and function_player.php are called in /player.php with
Code:
require_once('./includes/config.php');
require_once('./includes/functions_player.php');
Then inside /player.php, I am calling up a function in functions_player.php
Code:
fetch_player($player);
So far, everything works great... however, inside the fetch_player function, I try to use those two global variables... $countEmod and $countDmod... Unfortunately, this doesn't work. The function doesn't recieve values for these variables. I have tried adding a require_once for the config file inside the functions file, but that too doesn't work.

Is there something I have to do, to get the global variables to work inside the function?
Reply With Quote
  #4  
Old 02-11-2009, 10:31 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You must use the global keyword to bring the variables into scope.
PHP Code:
global $var1$var2
Reply With Quote
  #5  
Old 02-11-2009, 10:53 AM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ah... kick ass...

I'm a PERL programmer by heart... PHP is just foreign to me.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:37 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03958 seconds
  • Memory Usage 2,197KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (3)bbcode_code
  • (2)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (5)post_thanks_box
  • (5)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (5)post_thanks_postbit_info
  • (5)postbit
  • (5)postbit_onlinestatus
  • (5)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete