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 Quote Link to comment 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; } Quote Link to comment 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 Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.