Notice: Undefined index: languages 
asked by Not Registered on 26 February 2009 10:51
Notice: Undefined index: languages in /home/cs114183/public_html/infusions/wooya_web_stats_panel/wooya_web_stats_panel.php on line 40
Answers
This error appears when you try to access an array value and the key is not within the associative array.
Example:
$test = array ("foo" => "bar", "tricky" => "code");
echo $test['foo']; => foo , all fine
echo $test['lanugages'] => error, because there is no key "languages"
Example:
$test = array ("foo" => "bar", "tricky" => "code");
echo $test['foo']; => foo , all fine
echo $test['lanugages'] => error, because there is no key "languages"


















