The nerdy adventures of...

Phil Sturgeon


Most of this code can be found on my GitHub profile but I like to keep track of my work on here too.

Prowl library for CodeIgniter

Send iPhone notifications from your CodeIgniter application with the Prowl library. Based on the PHP Prowl from Leon Bayliss and cleaned up.

Requirements

  1. an iPhone
  2. the Prowl app from the App Store installed on your iPhone
  3. a Prowl account

Usage

$config['username'] = 'KanyeWest';
$config['password'] ='douch3b4g1977';
// optional. Defaults to CI Prowl
$config['application'] = "Kayne's Calender";

echo $this->load->library('prowl', $config);

echo $this->prowl->send('Reminder', 'Be an idiot in public.');

Simple as that!

To-do

I'll add a config file for it at some point.

Download from GitHub