Advertisement

04.07.2008 at 06:58AM PDT, ID: 23301338
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

Selecting users having a birthday when it's midnight in their time zone

Asked by HarpuaFSB in PHP Scripting Language, MySQL Server

Tags:

Hi all, I'm trying to write a cron job that will run every hour and select any users that are having a birthday when it's midnight in their time zone and I'm kind of having coder's block on it.

In my user table the pertinent fields I have are timezone and birthdate.

Time zone is stored as Time Zone Description | offset, for example, Eastern Standard Time is stored as "EST|-300" where the -300 is -300 minutes.

Birthdate is stored as a string date i.e., 1980-01-26.

The server time is set to EST.

The way I display the correct time to my users based on their time zone is as follows:

$datetime = time();      //server time
$offset = "-300"; //user's offset
$gmt = ($datetime + 18000);
$local = $gmt + ($offset * 60);
echo date("D M d, Y g:i a", $local);

Currently the cron job I have written runs every day at 6AM local server time (which is EST), grabs all users whose birthdate is the current day ("WHERE birthdate LIKE \"%-" . date("m-d", time()) . "\" ";) and email a birthday greeting.

What I want to do is modify this job so that it runs on the hour and emails users whose birthday it is when it's midnight in their time zone.

I could just grab all users, loop through and do the time calculations above but that doesn't sound very efficient, I'd like to be able to do it with just a SQL statement but am totally blanking on how I would do that.

Any ideas?Start Free Trial
 
Loading Advertisement...
 
[+][-]04.07.2008 at 08:07AM PDT, ID: 21297616

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.07.2008 at 08:16AM PDT, ID: 21297725

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04.07.2008 at 08:48AM PDT, ID: 21298048

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: PHP Scripting Language, MySQL Server
Tags: PHP, MySQL
Sign Up Now!
Solution Provided By: julianH
Participating Experts: 1
Solution Grade: A
 
 
[+][-]04.07.2008 at 08:57AM PDT, ID: 21298147

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628