I am using an HtML and PHP. I have to check the Table with the If condition using PHP for Example
<?php if($status==0) {?>
<td><input type='text' name='test' id='test' value=''>
<?php }?>
<?php else (if($status==2) && ($status==1)) {?>
<td><input type='text' name='test' id='test' value=''>
<?php }?>
Am getting eror as unexpected else and unexpected boolean.........
Is it wrong?