Author |
Message |
Darrell3831
Worker


Joined: Feb 18, 2004
Posts: 244
|
Posted:
Tue Dec 19, 2006 12:14 pm |
|
Hi,
I wrote a small php module and block combination for phpNuke that rotates a quote like the old ephirimids block used to do.
I'd like to only have the quote update at a administrator defined interval.
For example ever hour. This will be a variable though in the blocks config.
My question is;
In your opinion, what is the easiest way, with the least amount of overhead, to rotate anything... graphical or text based on an unknown time interval.
Is there any neat little nifty PHP trick that any of you know that would keep me from having to check the time and date since last displayed quote, calculate it, and randombly choose a new one on every page view?
Or is there just no way around it. I hafta' check time and date for every page view that calls the block...??
My current idea is to have two fields in the data file, one for time and date of last new quote, and one for current quote id.
Each time the block loads it reads time and date field, reads confige rotate value, and reads current quote id. If trigger has elapsed it updates the records and randomly chooses next quote.
Any better ideas?
Thanks for your thougths.
Darrell |
_________________ http://www.psy-center.com |
|
|
 |
hitwalker
Sells PC To Pay For Divorce

Joined:
Posts: 5661
|
Posted:
Tue Dec 19, 2006 6:25 pm |
|
|
|
 |
Darrell3831

|
Posted:
Wed Dec 20, 2006 3:55 am |
|
Thanks,
I'll take a look at it and see what he did. |
|
|
|
 |
djmaze
Subject Matter Expert

Joined: May 15, 2004
Posts: 727
Location: http://tinyurl.com/5z8dmv
|
Posted:
Wed Dec 20, 2006 6:17 am |
|
$quote = split(';',$_COOKIE['quote'])
if ($quote[0] < time()+3600) echo 'goodluck'
setcookie('quote', 'time;id') |
_________________ $ mount /dev/spoon /eat/fun auto,overclock 0 1
ERROR: there is no spoon
http://claimedavatar.net/ |
|
|
 |
montego
Site Admin

Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Wed Dec 20, 2006 8:31 am |
|
After seeing dj's post, I have to ask the question: Darrell3831, are you looking for this to rotate each xxx minutes by user or by site? The reason I ask is that dj's solution would be specific to the user as the cookies are "individualized".
If it is for the entire site, then I do not believe there is any "trick" to get around checking a reference timestamp to what the current time is... |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
 |
Darrell3831

|
Posted:
Tue Dec 26, 2006 3:48 pm |
|
I am looking to rotate the item, a quote, site wide for every user at the same time.
Not individually for each user seperately.
I still havent got this working the way I want, but I'm getting closer I think.
I'm leaning towards the way I described it in the first post.
I don't see how the cookie will do quite what I was hoping for.
Thanks though!
I appreciate all suggestions.
Darrell |
|
|
|
 |
gregexp
The Mouse Is Extension Of Arm

Joined: Feb 21, 2006
Posts: 1497
Location: In front of a screen....HELP! lol
|
Posted:
Wed Dec 27, 2006 9:23 pm |
|
After seeing this post, I see Dj's approach but thats their time, and their browser. Heres something that might help you out.
Code:
function rotate_quote($interval,$toq){//$interval is the amount of SECONDS you would like the quotes to rotate or whatever it maybe. $toq is the total amount of things to rotate.
//Mathematics on the time, its returned as whole number so we can do some math on it.
$time=time();
$chk=$time/$interval;
$chk=explode('.',$chk);
$ch=$chk['0'];//Whole number version of time/insterval.
//Get amount of digits to play with.
$chc=strlen($ch);//Number of digits after time has been divided.
$toc=strlen($toq);//Number of digits to use.
$chk=$chc-$toc;//number of digits to subtract.
//Limit the length of the string to only whats needed.
$toch=substr($ch,$chk);
//Leaving it zero helps no one.
if ($toch=='0'){
$toch='1';
}
$toch=$toch*$toch;//Allows for a more Random appeal without it actually being random
//Lets return a number within the limits preset
while($toch>$toq){
$toch=$toch-$toq;
}
return $toch;
}
|
What is returned is what appears to be a randomly generated number that is anything but random. For the interval, it will return the same number. If this is what you would like, you could use this to make an sql query, where qid is a number. You could also assign all the quotes to an array, then pull the $var[$num];
All depending on what best suits you, yes there are a few other ways, but I decided to give this a shot and see if I couldnt code in php what you needed. |
_________________ For those who stand shall NEVER fall and those who fall shall RISE once more!! |
|
 |
 |
Darrell3831

|
Posted:
Thu Dec 28, 2006 8:06 am |
|
Thanks Darklord,
I've saved it and I'm going to tinker with it more tonight. I appreciate the time you spent and comments in the code.
Darrell |
|
|
|
 |
gregexp

|
Posted:
Thu Dec 28, 2006 6:45 pm |
|
Not a problem hopefully it can help.
Another approach might be to make a current_quote table, then by breaking the time down, when its not inbetween(there will be a decimal if inbetween), empty the table, then using a random number generate(not mine, its definatley not random); fill the table with that one.
In my head I can see it, putting it to words is not so easy lol. |
|
|
|
 |
Darrell3831

|
Posted:
Fri Dec 29, 2006 9:02 am |
|
I got it.
Nothing fancy, but it's working.
In the block I read the config file. If time now is greater than last rotated then I rotate the quote again.
Then in the block I display the quote.
I have two tables. One for the config which holds current quote id and time stamp and all the configuration variables. And a second table for all the quotes/authors.
I'm working on cleaning it up now.
Thanks for all the suggestions. It's always helpful to talk to others about this stuff.
Here's the rotat now function I devised Darklord.
Code:function rq_rotate_now(){
global $prefix, $db;
mt_srand((double)microtime() * 1000000); // Seed the generator
list($total) = $db->sql_fetchrow($db->sql_query("SELECT count(*) FROM ".$prefix."_rq"));
$num = rand(0,($total-1));
list($qid) = $db->sql_fetchrow($db->sql_query("SELECT qid FROM ".$prefix."_rq LIMIT $num,1"));
$qid = intval($qid);
$time=time(); // No need to be fancy. Just use Unix time stamp.
$db->sql_query("update ".$prefix."_rq_cfg set qid='$qid', last_rotated=$time where cid=1");
Header("Location: admin.php?op=rq_administration");
}
|
My experience is more C++ than PHP, so I have a ways to go yet. But, some things worry me about my code. For instance these two database calls. In examples I hardle ever see anyone test the results of the database call.
What if the database calls fail? *shrugs* oh well.
Darrell |
|
|
|
 |
CodyG
Life Cycles Becoming CPU Cycles

Joined: Jan 02, 2003
Posts: 714
Location: Vancouver Island
|
Posted:
Fri Dec 29, 2006 10:51 am |
|
I'm always checking for everything or die() ... here is a sample from a script I've been working on for a chemistry teacher friend.
Code:$link = mysql_connect($dbhost,$username,$password) or die( "Unable to link to db server");
$selected = mysql_select_db($database) or die("Could not select database");
function show_form($pqnum){
$query = "SELECT qnum, reactant, pos, pos_sub, neg, neg_sub FROM chem_formulas1 WHERE qnum=$pqnum";
$qresult = mysql_query($query) or die("Invalid query: $query") ;
$row = mysql_fetch_array($qresult) or die("You are done... no more questions"); //just for testing
|
|
_________________ "We want to see if life is ubiquitous." D.Goldin |
|
|
 |
Darrell3831

|
Posted:
Fri Dec 29, 2006 9:38 pm |
|
|
|
 |
|