重複の可能性:
PhPでmysqlエントリが空かどうかを確認するには?
一見単純な 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>';
?>'