> Ok i found something very interesting > , i have a session var setup to check for a groupID which is an > integer, > > if ($_SESSION['groupID']==1) { this was working, then when i changed it > to > > if ($_SESSION['groupID']===1) { per recomendation, it does not now ! i > was going through my code and changing things, now i fear it may all > break ? >
I changed it to if ($_SESSION['groupID']==='1') { and it worked, why was that, is what i did before bad practice ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php