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 want to know how to make a second "check" on what session is set. I am currently using this code:

<?php
session_start();
require_once("../user/connect.php");
include "getn.php";
if($_SESSION['username'] != 'RBLXDev') {
die('lol failure');
}
?>

My current username is RBLXDev, but I want to make it check if the current username (stored in a session named username) is something like "waffle_". I believe how you do the "and" statement in PHP is ||, but I don't know how to add to that code.

share|improve this question
It has no sense! If I understood correctly, you want to check if $_SESSION['username'] != $_SESSION['username']!!! Please clarify your question a bit more. – sємsєм Dec 16 '12 at 21:51

2 Answers

up vote 0 down vote accepted

You can use any Logical Operator in you if statement to perform 2 or more checks -

using or / || -

if($_SESSION['username'] != 'RBLXDev' or $_SESSION['username'] != '...') { }
if($_SESSION['username'] != 'RBLXDev' || $_SESSION['username'] != '...') { }

using and / && -

if($_SESSION['username'] != 'RBLXDev' and $_SESSION['username'] != '...') { }
if($_SESSION['username'] != 'RBLXDev' && $_SESSION['username'] != '...') { }
share|improve this answer
Thanks! I've been getting errors because I put the || symbol after the parentheses. – RBLXDev Dec 17 '12 at 20:48

Welcome to SO!

if($_SESSION['username'] != 'RBLXDev' && $_SESSION['username'] != 'waffle_')

Please read into php's logical operators.

share|improve this answer

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.