Skip to content

Instantly share code, notes, and snippets.

@philsturgeon
Created February 9, 2012 05:01
Show Gist options
  • Save philsturgeon/1777448 to your computer and use it in GitHub Desktop.
Save philsturgeon/1777448 to your computer and use it in GitHub Desktop.
Keywords example
$id = $this->blog_m->insert(array(
'title' => $this->input->post('title'),
'slug' => $this->input->post('slug'),
'keywords' => Keywords::process($this->input->post('keywords')),
'intro' => $this->input->post('intro'),
'body' => $this->input->post('body'),
'status' => $this->input->post('status'),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment