I'm passing a string from one page to another, is the url encoding necessary here?
Like so:
<?=anchor('foo/bar/'.$id.'/'.$title, 'All')?>
function bar($id, $title) {
$data['id'] = $id;
$data['title'] = $title;
$this->load->view('some_view', $data);
}
As you can see these variables have no interaction with a database. What is the best way to decode these variables?