In this tutorial, I will explain on how to you can display error messages using CodeIgniter into your View from a Controller.
There are two kinds of approach of doing this. First, passing the data directly from Controller to View. Second, using flashdata.
This code is useful, for example, if you have a shopping cart application. Say you want to display an error message telling your visitor that the cart is empty.
First approach:
To do this, add the following in your Controller:
if(!$this->cart->contents())
{
$this->data['err_message']='Your cart is empty!';
Are you serious? You are not talking about error message but the way to pass a message you've created to the view. With this kind of title I was expecting to find out how to display real error message in order to debugg a developping issue. Please change your title, the content has not really the same meaning.
Comments
codeiginiter website on real server
Rename your post title
Hi,
Are you serious? You are not talking about error message but the way to pass a message you've created to the view. With this kind of title I was expecting to find out how to display real error message in order to debugg a developping issue. Please change your title, the content has not really the same meaning.
Add new comment