我试图运行一个看似简单的 if 语句,但是,我的 PHP 技能并不是那么好。
我正在从单个 MySQL 表中查询数据,并且我想运行一个语句来检测字段是否为空,如果不是,我希望它显示某些内容,如果是,则不显示任何内容。
另外,我不确定是否可以将其放入回声中?
编辑:************************ 这是使事情变得更容易的代码:
我可能做错了什么。这是我的代码,可以更容易地解释事情
'
if (!$result) {
exit('<p>Error performing query: ' . mysql_error() . '</p>');
}
//creating the table w/ headers
echo '
<table>
<thead>
<tr>
...
<th style="width:90px"><strong><a href="other-items.php?order=oc_retailer">Retailer</a></strong></th>
<th style="width:90px"><strong>Files</strong></th>
</tr>
</thead>';
// Display each item
while ($row = mysql_fetch_array($result)) {
echo '
<tr>
...
<td style="width:90px">' . $row['oc_retailer'] .'</td>
<td style="width:90px"> this is where I want to if statement to go</td>
';
}
echo '</table>';
?>'