Skip to content

Instantly share code, notes, and snippets.

@shadda
Created July 4, 2013 14:52
Show Gist options
  • Save shadda/5928431 to your computer and use it in GitHub Desktop.
Save shadda/5928431 to your computer and use it in GitHub Desktop.
<?php
class Ajax_Event extends Ajax
{
public function poll()
{
$q = $this->db->prepare("SELECT event_id, event_key, event_data FROM event_log ORDER BY event_date DESC");
$q->execute();
return json_encode($q->fetchAll(PDO::FETCH_ASSOC));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment