I am trying to push few notifications for scheduled todos, for example if i set a task to be run at 2014-12-12 08:15:00, it can push notification at that exact time. I have tried pusher...
require('Pusher.php');
$pusher = new Pusher($key, $secret, $app_id);
$pusher->trigger('todo-channel', 'task-event', array('message' => 'hey, you have a task') );
How to trigger this task at specific time, i have tried google and search on stackoverflow but couldn't find any better solution.
I can even use node.js
if you can provide an example, please help me. thanks