だから、私はこれに頭を悩ませています。私の元の「IF」ステートメントは、真の場合は実行されません(変数をエコーし、コードをトリガーする必要があるため、真であることはわかっています)。ただし、IF ステートメントが真でない場合、elseif および else ステートメントは正常に機能します。コードは次のとおりです。
<?php
$count=mysql_num_rows($result);
// have also tried only one "=" sign//
if ($count==0){
//This is not appearing//
echo "Your search did not yield any results. Please try another search.";
} else if ( //other conditions// ) {
//code that is working fine//
} else {
// more code that is working fine
// (happens to be the same as the original if statement)
}
echo $count; //is printing 0 correctly, but the if statement for $count=0 not happening//
?>
何か案は?