Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My IPhone/Android app users belong to multiple timezones. I want to give them a feature, where they can save a list of time and days of a week, when they would like to receive push notifications to their phone from the server.

Each user input will be something like,

[12:30AM - Mon, Tues, Wed ],[4:30PM - Mon, Tues, FRI ],[7:30PM - Mon, Fri, Sat, Sun ] etc.

It can be combination of anything. It's almost like user setting alarm for him.

How should I have to save these values in DB and handle multiple timezones?
In cron, how should I fetch it back and send notification to users on time?

share|improve this question
What have you tried so far? – hakre Nov 20 '12 at 10:59
I have converted and saved time in UTC format – gv-me Nov 20 '12 at 11:00
So, if you saved it in UTC, what else do you want to hear? Just save it in the DB, in set cron task to run every 1/5/10/15 minutes, extract the records that have date between previous run and current run and do everyhting else. – J0HN Nov 20 '12 at 11:03
And for programming what you actually ask for? UTC seems like a good idea for streamlining the time-values. – hakre Nov 20 '12 at 11:03

closed as not a real question by hakre, J0HN, Jocelyn, Justin Satyr, kiamlaluno Nov 22 '12 at 2:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.