我有语法错误。我不知道如何处理指定的部分。提前谢谢你
这是我的错误:
解析错误:语法错误,第74行的C:\ xampp \ htdocs \ project \ women.php中的意外“如果”(T_IF)
echo'<table class="barname">
<tr>
<td>'. if ($result1['sat_1']){echo $declare;}. '</td>
</tr>
</table>';
答案 0 :(得分:2)
做得好吗?
echo 'some stuff here';
if( $result1['sat_1']) echo $declare;
echo 'more stuff';
您也可以使用三元运算符:
echo 'some stuff'.($result1['sat_1'] ? $declare : 'NOTHING!').'more stuff';
答案 1 :(得分:1)
不,if
需要单独声明,如下所示:
echo '<table class="barname">
<tr>
<td>';
if ($result1['sat_1'])
echo $declare;
echo '</td>
</tr>
</table>';