tuxbuddy Posted November 22, 2009 Share Posted November 22, 2009 I am getting the following error: PHP Notice: Undefined offset: 25 in /var/www/notice.php on line 137, referer: http://10.14.236.192/watch2.php Any idea when does the errror gets display? Link to comment https://forums.phpfreaks.com/topic/182473-getting-fgets-error-with-php-file/ Share on other sites More sharing options...
rajivgonsalves Posted November 22, 2009 Share Posted November 22, 2009 what is your code on line 137 ? this is when your trying to access a array value which is not existing if your checking something like if ($_GET['var']) change it too if (isset($_GET['var'])) to avoid the php notice. Link to comment https://forums.phpfreaks.com/topic/182473-getting-fgets-error-with-php-file/#findComment-963134 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.