I was wondering if someone could tell me the correct way to link to another page from within a view.
Is there a function for this or is it just the usual about
Best and easiest way is to use anchor tag in CodeIgniter like eg.
load->helper('url');
echo anchor('name_of_controller_file/function_name_if_any', 'Sign Out', array('class' => '', 'id' => ''));
?>
Refer https://www.codeigniter.com/user_guide/helpers/url_helper.html for details
This will surely work.