Fork me on GitHub
 
 

Pointless blog

Here’s a completely pointless blog to test my newly installed code highlighting plugin…

function categories()
{
	$category = new Category();
	$category->order_by('name', 'asc')->get();
 
	$results = array();
	$x = 0;
	foreach ($category as $c)
	{
		$results[$x]['id'] = $c->id;
		$results[$x]['name'] = $c->name;
		$x++;
	}
	$this->output->set_output(json_encode($results));
 
	Iphone_activity::add('categories');
}

Cool, huh?

wp-geshi-highlight

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" cssfile="">