Display alert message and redirect after click on accept

后端 未结 7 2031
星月不相逢
星月不相逢 2020-12-09 11:23

Well, I have a page with links to reports. Whenever somebody clicks on one report, they can download the excel file. However, sometimes there are no fields to make a report;

7条回答
  •  渐次进展
    2020-12-09 11:59

    Combining CodeIgniter and JavaScript:

    //for using the base_url() function
    $this->load->helper('url');
    
    echo "";
    

    Note: The redirect() function automatically includes the base_url path that is why it wasn't required there.

提交回复
热议问题