Gubb.net PHP Class

We are working on a PHP Class that will interface with the execllent list-management software at gubb.net. Join the Google Group if you'd like to learn more.

Download

It's still a very early version, but the class is available here as gubb.class.php

Usage

The goal is to make this as easy and quick to use as possible. First off, you will need an account at http://gubb.net. Once you have an account, log in and go to http://gubb.net/home/api to create an API Key. This allows the application to act on your list without having your password.
Now to use the API, do something like this:

require_once('gubb.class.php');

$gubb = new gubb('your_api_key_goes_here');

// Populate the gubb object with all of your lists and items
$gubb->populateLists();
// now $gubb->lists contains an array of all of your lists

// Add something to a list
$itemid = $gubb->addItem("Some List", "Go do something");

More functions are being developed to provide lots more useful features. Please contact us and join the Google Group if you'd like more information or like to be involved with the gubb.net PHP Class