Undefined index: language in 
asked by Not Registered on 6 October 2008 17:18
The website has Flash navigation, and html below in Iframes two language, English and Arabic. It seems when the website is idle for a bit that this error appears and the site needs to be reloaded Notice: Undefined index: language in /data/17/1/1/107/1653270/user/1782754/htdocs/Pages/faq.php on line 106 Notice: Undefined index: language in /data/17/1/1/107/1653270/user/1782754/htdocs/Pages/faq.php on line 116
Answers
It is a notice and not an error.
For me it looks like you have an array and try to access a key, which does not exist (yet)
Here is an example:
<?php
$try = array();
echo $try["no_key_here"];
?>
So, your key "language" is not set/has no data.
For me it looks like you have an array and try to access a key, which does not exist (yet)
Here is an example:
<?php
$try = array();
echo $try["no_key_here"];
?>
So, your key "language" is not set/has no data.
answered by Not Registered on 20 October 2008 15:01
- I have write script , but i have got error, how to solve that error?, Narasimha murthy Arangi


















