tripleM Posted October 5, 2009 Share Posted October 5, 2009 hi I am getting the following errors, when i run a login page. Notice: Undefined offset: 18 Notice: Undefined offset: 19 Notice: Undefined index: LeftSideText Notice: Undefined index: MainText and so on.. I dont understand, where and why i am getting these? Thanks, tripleM Quote Link to comment https://forums.phpfreaks.com/topic/176526-notice-undefined-offset/ Share on other sites More sharing options...
jon23d Posted October 5, 2009 Share Posted October 5, 2009 Perhaps viewing your code would allow us to help... Quote Link to comment https://forums.phpfreaks.com/topic/176526-notice-undefined-offset/#findComment-930540 Share on other sites More sharing options...
tripleM Posted October 5, 2009 Author Share Posted October 5, 2009 Thats my doubt, which page/file i can provide. I dont know, from which page these errors. Because in login page, at the following numbers are comments. thanks,trileM Quote Link to comment https://forums.phpfreaks.com/topic/176526-notice-undefined-offset/#findComment-930542 Share on other sites More sharing options...
jon23d Posted October 5, 2009 Share Posted October 5, 2009 I can't guess! All I can say is that you appear to be referencing an array with undefined indexes Quote Link to comment https://forums.phpfreaks.com/topic/176526-notice-undefined-offset/#findComment-930544 Share on other sites More sharing options...
cags Posted October 5, 2009 Share Posted October 5, 2009 Notice: Undefined index: LeftSideText Most likely reason is you are doing something like $_POST['LeftSideText'] and the $_POST array doesn't contain an element with the key 'LeftSideText' Notice: Undefined offset: 18 Not 100% sure but fairly confident it's the same problem, but rather than being an associate array it's for a numeric indexed array. Quote Link to comment https://forums.phpfreaks.com/topic/176526-notice-undefined-offset/#findComment-930651 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.