Skip to content

Instantly share code, notes, and snippets.

@delonnewman
Created October 16, 2008 18:01
Show Gist options
  • Save delonnewman/17214 to your computer and use it in GitHub Desktop.
Save delonnewman/17214 to your computer and use it in GitHub Desktop.
<?php
#require 'BGCheckManager.class.php';
require 'Task.class.php';
#$task_id = BGCheckManager::request(1, array('Felony'));
#echo BGCheckManager::getStatus($task_id);
$task = Task::create("Task", "new", array('first_name' => 'Delon', 'last_name' => 'Newman'));
print_r($task);
$task->save();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment