House of Fusion
Search over 2,500 ColdFusion resources here
  
Home of the ColdFusion Community

Mailing Lists
Home /  Groups /  ColdFusion Talk (CF-Talk)

Daily Tip help

  << Previous Post |  RSS |  Sort Oldest First |  Sort Latest First |  Subscribe to this Group Next >> 
Top  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Bailey, Neal
05/17/2004 09:54 PM

Hello All... I am having an issue with trying to build a rotating daily tips script. All I want to do is have a database full of tips and everyday have a new tip display on the front page. I thought it was easy but for some reason I cannot get it to work. I have about 40 tips so all it needs to do is select the next record everyday. Can someone point me in the right direction... I have looked all over the net for examples but oddly enough there are not any that do such a simple thing, at least that I could find. Thanks for any help on this I'm sure its simple, but for some reason I cant figure it out. - Neal

Top  |   Parent  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Tony Weeg
05/17/2004 10:13 PM

why not put them in a database, with a  sort order, and whatever day of the month it is, show that based on the sort order numbered from 1-28 or something like that? or just do it randomly.  where each page refresh would show a new one? ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net Hello All... I am having an issue with trying to build a rotating daily tips script. All I want to do is have a database full of tips and everyday have a new tip display on the front page. I thought it was easy but for some reason I cannot get it to work. I have about 40 tips so all it needs to do is select the next record everyday. Can someone point me in the right direction... I have looked all over the net for examples but oddly enough there are not any that do such a simple thing, at least that I could find. Thanks for any help on this I'm sure its simple, but for some reason I cant figure it out. - Neal

Top  |   Parent  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Greg Luce
05/17/2004 10:20 PM

How about flag the tip record with a bit field called 'live'. Then you can see the tip that's "live", and then take the next tip in whatever order you have them. Greg why not put them in a database, with a  sort order, and whatever day of the month it is, show that based on the sort order numbered from 1-28 or something like that? or just do it randomly.  where each page refresh would show a new one? ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net Hello All... I am having an issue with trying to build a rotating daily tips script. All I want to do is have a database full of tips and everyday have a new tip display on the front page. I thought it was easy but for some reason I cannot get it to work. I have about 40 tips so all it needs to do is select the next record everyday. Can someone point me in the right direction... I have looked all over the net for examples but oddly enough there are not any that do such a simple thing, at least that I could find. Thanks for any help on this I'm sure its simple, but for some reason I cant figure it out. - Neal

Top  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Matthew Walker
05/17/2004 10:17 PM

Since there are only 40, it's no big deal to get the whole lot from the database and get CF to choose. Int(now()) converts today into an integer. You can use mod to turn that daily number into a recurring cycle.. <cfquery name="tips"> SELECT. </cfquery> <cfset tipNum = (int(now()) mod tips.recordCount) + 1> <cfoutput>#tips.tip[tipNum]#</cfoutput> Regards, Matthew Walker   _____ Sent: Tuesday, 18 May 2004 1:51 p.m. To: CF-Talk Subject: Daily Tip help... Hello All... I am having an issue with trying to build a rotating daily tips script. All I want to do is have a database full of tips and everyday have a new tip display on the front page. I thought it was easy but for some reason I cannot get it to work. I have about 40 tips so all it needs to do is select the next record everyday. Can someone point me in the right direction... I have looked all over the net for examples but oddly enough there are not any that do such a simple thing, at least that I could find. Thanks for any help on this I'm sure its simple, but for some reason I cant figure it out. - Neal   _____  

Top  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Bailey, Neal
05/17/2004 10:44 PM

Well this is kind of what I am trying to do... I want to automate it though so that all I have to do is keep adding tips and the system will just continue to rotate through them either randomly or in order either is ok with me. Over time I will be adding more tips so this database could have hundreds as time goes on. The code below is what I am trying to do but I keep getting an Integer mismatch error. All I want is a simple Tip of the day thing just like Ben Forta has on his site or Like Sitepoint. Thanks for the help... <!--- Sets Scheduler in cfadmin to run this once a day ---> <!--- reset all tips to inactive ---> <cfquery name="clear_active" datasource="myDSN">      UPDATE tips      SET active_tip = 0 </cfquery> <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = newID() </cfquery> --------------------------------------------------------- <!--- Dipslay Tip on page ---> <cfquery name="get_tip" datasource="myDSN">      SELECT daily_tip      FROM tips      WHERE active_tip = 1 </cfquery> Neal Bailey Internet Marketing Manager E-mail:  <mailto:nbailey@ugaais.com> nbailey@ugaais.com   _____ Sent: Monday, May 17, 2004 8:18 PM To: CF-Talk Subject: RE: Daily Tip help... How about flag the tip record with a bit field called 'live'. Then you can see the tip that's "live", and then take the next tip in whatever order you have them. Greg why not put them in a database, with a  sort order, and whatever day of the month it is, show that based on the sort order numbered from 1-28 or something like that? or just do it randomly.  where each page refresh would show a new one? ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net Hello All... I am having an issue with trying to build a rotating daily tips script. All I want to do is have a database full of tips and everyday have a new tip display on the front page. I thought it was easy but for some reason I cannot get it to work. I have about 40 tips so all it needs to do is select the next record everyday. Can someone point me in the right direction... I have looked all over the net for examples but oddly enough there are not any that do such a simple thing, at least that I could find. Thanks for any help on this I'm sure its simple, but for some reason I cant figure it out. - Neal   _____  

Top  |   Parent  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Tony Weeg
05/17/2004 10:49 PM

<cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = newID() </cfquery> that's going to create a uuid in sql server I would do this.... <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = #randRange(0-100) --if you have 100, or whatever your total is </cfquery> some cf anals will set that random number before the query...but either way will work. ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net Well this is kind of what I am trying to do... I want to automate it though so that all I have to do is keep adding tips and the system will just continue to rotate through them either randomly or in order either is ok with me. Over time I will be adding more tips so this database could have hundreds as time goes on. The code below is what I am trying to do but I keep getting an Integer mismatch error. All I want is a simple Tip of the day thing just like Ben Forta has on his site or Like Sitepoint. Thanks for the help... <!--- Sets Scheduler in cfadmin to run this once a day ---> <!--- reset all tips to inactive ---> <cfquery name="clear_active" datasource="myDSN">      UPDATE tips      SET active_tip = 0 </cfquery> <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = newID() </cfquery> --------------------------------------------------------- <!--- Dipslay Tip on page ---> <cfquery name="get_tip" datasource="myDSN">      SELECT daily_tip      FROM tips      WHERE active_tip = 1 </cfquery> Neal Bailey Internet Marketing Manager E-mail:  <mailto:nbailey@ugaais.com> nbailey@ugaais.com   _____ Sent: Monday, May 17, 2004 8:18 PM To: CF-Talk Subject: RE: Daily Tip help... How about flag the tip record with a bit field called 'live'. Then you can see the tip that's "live", and then take the next tip in whatever order you have them. Greg why not put them in a database, with a  sort order, and whatever day of the month it is, show that based on the sort order numbered from 1-28 or something like that? or just do it randomly.  where each page refresh would show a new one? ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net Hello All... I am having an issue with trying to build a rotating daily tips script. All I want to do is have a database full of tips and everyday have a new tip display on the front page. I thought it was easy but for some reason I cannot get it to work. I have about 40 tips so all it needs to do is select the next record everyday. Can someone point me in the right direction... I have looked all over the net for examples but oddly enough there are not any that do such a simple thing, at least that I could find. Thanks for any help on this I'm sure its simple, but for some reason I cant figure it out. - Neal   _____  

Top  |   Parent  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Tony Weeg
05/17/2004 10:54 PM

or, actually... <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = #randRange(1-100) --if you have 100, or whatever your total is </cfquery> since you probably will not have a 0 :) also, your integer mismatch was most likely on the new() creating a uuid there, and not an INT which that column seems to be. ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = newID() </cfquery> that's going to create a uuid in sql server I would do this.... <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = #randRange(0-100) --if you have 100, or whatever your total is </cfquery> some cf anals will set that random number before the query...but either way will work. ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net Well this is kind of what I am trying to do... I want to automate it though so that all I have to do is keep adding tips and the system will just continue to rotate through them either randomly or in order either is ok with me. Over time I will be adding more tips so this database could have hundreds as time goes on. The code below is what I am trying to do but I keep getting an Integer mismatch error. All I want is a simple Tip of the day thing just like Ben Forta has on his site or Like Sitepoint. Thanks for the help... <!--- Sets Scheduler in cfadmin to run this once a day ---> <!--- reset all tips to inactive ---> <cfquery name="clear_active" datasource="myDSN">      UPDATE tips      SET active_tip = 0 </cfquery> <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = newID() </cfquery> --------------------------------------------------------- <!--- Dipslay Tip on page ---> <cfquery name="get_tip" datasource="myDSN">      SELECT daily_tip      FROM tips      WHERE active_tip = 1 </cfquery> Neal Bailey Internet Marketing Manager E-mail:  <mailto:nbailey@ugaais.com> nbailey@ugaais.com   _____ Sent: Monday, May 17, 2004 8:18 PM To: CF-Talk Subject: RE: Daily Tip help... How about flag the tip record with a bit field called 'live'. Then you can see the tip that's "live", and then take the next tip in whatever order you have them. Greg why not put them in a database, with a  sort order, and whatever day of the month it is, show that based on the sort order numbered from 1-28 or something like that? or just do it randomly.  where each page refresh would show a new one? ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net Hello All... I am having an issue with trying to build a rotating daily tips script. All I want to do is have a database full of tips and everyday have a new tip display on the front page. I thought it was easy but for some reason I cannot get it to work. I have about 40 tips so all it needs to do is select the next record everyday. Can someone point me in the right direction... I have looked all over the net for examples but oddly enough there are not any that do such a simple thing, at least that I could find. Thanks for any help on this I'm sure its simple, but for some reason I cant figure it out. - Neal   _____  

Top  |   Parent  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Mike Kear
05/18/2004 07:38 AM

I have several of these things,  displaying random tips or random quotes. They all work flawlessly in SQLServer  with a query like: Select top 1 Tipid, Tip, Source, SourceEMail from Tips Order By NEWID() Each time the query is run, it produces a query containing a single record taken at random from the table.   If you wanted to run it only once per day, you could put it in a scheduled task, and put the result into an application variable, or perhaps have a CACHEWITHIN parameter set in the CFQUERY tag. Cheers Mike Kear Windsor, NSW, Australia AFP Webworks http://afpwebworks.com   _____ Sent: Tuesday, 18 May 2004 12:52 PM To: CF-Talk Subject: RE: Daily Tip help... or, actually... <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = #randRange(1-100) --if you have 100, or whatever your total is </cfquery> since you probably will not have a 0 :) also, your integer mismatch was most likely on the new() creating a uuid there, and not an INT which that column seems to be. ....tony

Top  |   Reply  |   Original Post  |   RSS Feed  |   Subscribe to this Group
Author:
Bailey, Neal
05/18/2004 02:29 AM

Thanks Tony, I have it working good now... here is The Tip Of The Day code incase anyone is wants to do the same. I set up the scheduler to run this once a day. I may set it every hour. -----------------Code------------------ <!--- reset all tips to inactive ---> <cfquery name="clear_active" datasource="myDSN">      UPDATE Tips      SET active = 0 </cfquery> <!--- Lets Count the Records ---> <cfquery name="CountRecords" datasource="myDSN">      SELECT COUNT(Tips.Tip_ID) AS maxrecords      FROM Tips </cfquery> <!--- Set the random record ---> <cfset RandomCount = randRange(1, #CountRecords.maxrecords#)> <!--- Now set the new tip as active ---> <cfquery name="set_new" datasource="myDSN">      UPDATE Tips      SET active = 1      WHERE tip_id = #RandomCount# </cfquery> ------------------END--------------------- Then all I do is output the active tip. Thanks for the help.... Neal Bailey Internet Marketing Manager E-mail:  <mailto:nbailey@ugaais.com> nbailey@ugaais.com   _____ Sent: Monday, May 17, 2004 8:52 PM To: CF-Talk Subject: RE: Daily Tip help... or, actually... <cfquery name="set_new" datasource="myDSN">      UPDATE tips      SET active_tip = 1      WHERE tip_id = #randRange(1-100) --if you have 100, or whatever your total is </cfquery> since you probably will not have a 0 :) also, your integer mismatch was most likely on the new() creating a uuid there, and not an INT which that column seems to be. ....tony Tony Weeg sr. web applications architect navtrak, inc. tony@navtrak.net 410.548.2337 www.navtrak.net


<< Previous Thread Today's Threads Next Thread >>

Search cf-talk

September 09, 2010

<<   <   Today   >   >>
Su Mo Tu We Th Fr Sa
       1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30