私はif
声明を出すのに問題があります:
<?php if (isset($detail) == 1) { ?>
// code if detail variable exists and is equal to 1
<?php } else { ?>
// code if detail variable doesn't exist or is not equal 1
<?php }?>
何らかの理由で、この条件は機能しません。どうすればif
状態を修正できるのでしょうか?