CodeIgniter - Correct way to link to another page in a view

前端 未结 6 2205
南笙
南笙 2020-12-01 02:59

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

6条回答
  •  悲&欢浪女
    2020-12-01 03:21

    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.

提交回复
热议问题