Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<td> <div style="display: none"><?=$pass = $myRs['Pass'];?></div> <?= if ($pass == 1) { print "Ja"; } else { print "Nee"; } </td>
配列からの結果を変数に入れようとしています(何らかの理由で出力され続けます)。しかし今、私は予期しないT_IFを取得し続けています
<?=は、 PHP5 でecho後に続く文字列を意味するため、予期しないエラーが発生するため、省略形が有効になっている場合はorを使用する必要があります。また、終了タグがありません。=T_IF<?php<?
<?=
echo
=
T_IF
<?php
<?