Notice: Undefined index: alias in .../app/plugins/ace/controllers/request_elements_controller.php on line 236...
so, i want to know whats this error meant for? is it for a variable that is undefined?
Notice: Undefined index: alias
Moderator: General Moderators
-
indian98476
- Forum Commoner
- Posts: 78
- Joined: Tue Dec 15, 2009 3:24 am
Re: Notice: Undefined index: alias
"Undefined index: alias" means the "alias" [array] index is undefined.
Code: Select all
$array = array("key" => "value");
echo $array["foo"]; // undefined index: foo-
indian98476
- Forum Commoner
- Posts: 78
- Joined: Tue Dec 15, 2009 3:24 am
Re: Notice: Undefined index: alias
thanx i understand that...but where does alias fit in here?
Re: Notice: Undefined index: alias
I don't know. It's your code - you find it.indian98476 wrote:thanx i understand that...but where does alias fit in here?
Re: Notice: Undefined index: alias
Somewhere in your code, an element in an array is trying to be referenced by using the "alias" index - similar to the "foo" index in ~tasairis' example.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
-
indian98476
- Forum Commoner
- Posts: 78
- Joined: Tue Dec 15, 2009 3:24 am
Re: Notice: Undefined index: alias
thanx guyz...