Working through a tutorial and I can't figure out how to make "Both can't win!" display. Can anyone explain this to me. Seems like it should be simple enough. Thanks.
$contestant_one='best teeth';
$contestant_two='best ears';
if($contestant_one xor $contestant_two){
print("Both can't win!");
}
else{
print('Only one winner!');
}