我有一个PHP代码并尝试回显一些html标签但我的代码不工作它显示空白页面。我忘了什么?
请检查我的代码谢谢你。
<?php
foreach($category_options_1 as $key=>$row)
{
if($row['option_type'] == 'DROPDOWN')
{
if($row['option_id'] == '20' && !empty($row['option_value'] == '0'))
{
{
echo '<p class="bottom-border"><strong>'.$row['option_id'].':</strong><span>'. echo lang_check('Studio').'</span><br style="clear: both;" /></p>';
else
echo'<p class="bottom-border"><strong>'.$row['option_name'].':</strong> <span>'._che($row['option_value'].'</span><br style="clear: both;" /></p>';
endif;
endforeach;
}
}
}
}
?>