fekaduw Posted February 4, 2007 Share Posted February 4, 2007 hello everyone, i was just trying to test the php page i've designed but i get a notice that is being displayed on the page which goes: Notice: Undefined index: id in C:\webroot\admin\home.php on line 4 i have seen the code on line 4. its just the following: $vid=$_GET["id"]; well, when the page runs for the first time there will not be any value for id to be transfered. Could that be the reason or something else. by the way it works when i test it locally. am not sure whether its because of the php.ini file definition in the case of my webserver. am not authorized to change the server's php.ini file definition. anyone with the solution is highly appreciated.. thanks a lot Link to comment https://forums.phpfreaks.com/topic/37077-solved-how-can-i-remove-the-notice/ Share on other sites More sharing options...
Jessica Posted February 4, 2007 Share Posted February 4, 2007 You have different settings for error reporting on the servers. if(isset($_GET['id'])){ $vid = $_GET['id']; }else{ $vid = NULL; } Link to comment https://forums.phpfreaks.com/topic/37077-solved-how-can-i-remove-the-notice/#findComment-177076 Share on other sites More sharing options...
fekaduw Posted February 4, 2007 Author Share Posted February 4, 2007 jesirose thanks a lot it worked. thanks again Link to comment https://forums.phpfreaks.com/topic/37077-solved-how-can-i-remove-the-notice/#findComment-177078 Share on other sites More sharing options...
Jessica Posted February 4, 2007 Share Posted February 4, 2007 No problem! Don't forget to hit the solved button Link to comment https://forums.phpfreaks.com/topic/37077-solved-how-can-i-remove-the-notice/#findComment-177079 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.