Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the following php if statement as part of my code

if ($_SESSION['username'])

and everything is fine when the username session is set, but when it isn't, I get the following error message which I would like to not have show up.

Notice: Undefined index: username in C:\xampp\htdocs\mysites\ebay_tutorial\index.php on line 12

How can I improve my code so that the error message doesn't show up?

share|improve this question
You could also modify the error reporting level – Dor Aug 13 '11 at 21:32

1 Answer

up vote 5 down vote accepted

This is happening because your PHP error reporting level is set to show Notice errors, which display if you try to access a key in an array which does not exist.

You can stop the error from being displayed by adding a call to isset:

if (isset($_SESSION['username']))
share|improve this answer
This is correct. The reason it wasn't working is because $_SESSION['username'] was undefined, but you were trying to use it. – Richard Aug 13 '11 at 21:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.