Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Darrell3831
Worker
Worker



Joined: Feb 18, 2004
Posts: 244

PostPosted: Tue Dec 19, 2006 12:14 pm Reply with quote

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 
View user's profile Send private message Visit poster's website
hitwalker
Sells PC To Pay For Divorce



Joined:
Posts: 5661

PostPosted: Tue Dec 19, 2006 6:25 pm Reply with quote

well idont think thats that easy as it will work with different set of cookies...
but i found a nice sample for you.

maybe it will help....

http://clarksco.com/hotscripts/quote3.zip
 
View user's profile Send private message
Darrell3831







PostPosted: Wed Dec 20, 2006 3:55 am Reply with quote

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

PostPosted: Wed Dec 20, 2006 6:17 am Reply with quote

$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/ 
View user's profile Send private message Visit poster's website
montego
Site Admin



Joined: Aug 29, 2004
Posts: 9457
Location: Arizona

PostPosted: Wed Dec 20, 2006 8:31 am Reply with quote

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! 
View user's profile Send private message Visit poster's website
Darrell3831







PostPosted: Tue Dec 26, 2006 3:48 pm Reply with quote

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

PostPosted: Wed Dec 27, 2006 9:23 pm Reply with quote

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!! 
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
Darrell3831







PostPosted: Thu Dec 28, 2006 8:06 am Reply with quote

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.

Smile

Darrell
 
gregexp







PostPosted: Thu Dec 28, 2006 6:45 pm Reply with quote

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







PostPosted: Fri Dec 29, 2006 9:02 am Reply with quote

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

PostPosted: Fri Dec 29, 2006 10:51 am Reply with quote

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 
View user's profile Send private message
Darrell3831







PostPosted: Fri Dec 29, 2006 9:38 pm Reply with quote

Thanks Cody.
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©