Very strange question, I've never seen anything like that. Let's see the code:
$_POST['SCORE1'] = 4;
$_POST['SCORE2'] = 0;
var_dump ($_POST['SCORE1']);
var_dump ($_POST['SCORE2']);
var_dump ($_POST['SCORE1'] == '?');
var_dump ($_POST['SCORE2'] == '?');
it echoes the followings:
int(4)
int(0)
bool(false)
bool(true) ??? wtf ???
I dont understand the last one. 0 = ?