Skip to content

Instantly share code, notes, and snippets.

@gregbarcza
Last active December 11, 2015 01:28
Show Gist options
  • Save gregbarcza/4523743 to your computer and use it in GitHub Desktop.
Save gregbarcza/4523743 to your computer and use it in GitHub Desktop.
<?
function update_slug(){
$this->load->helper('url');
$entries=$this->db->get('TABLE')->result();
foreach($entries as $entry){
$slug=url_title($entry->NAME,'-',TRUE);
$this->db->update('TABLE',array('SLUG'=>$slug),array('id'=>$entry->id));
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment