use || like this
<?php
$a=1;
$b=2;
$c=3;
if($id != $b || $id != $c)
{
$id=$a;
}
echo $id;
?>
Should work fine, you may have to put the individual expressions in braces as well though like this
if(($id != $b) || ($id != $c))
I never seem to know first off whether I need do that?
Nick