Ben aşağıdaki kodu vardır:
<table>
<thead>
<tr>
<th>Service</th>
<th>Status</th>
</tr>
</thead>
<?php $result = mysql_query("SELECT Service, Status FROM services WHERE Company='Company 1'");
while ($row = mysql_fetch_array($result)) {
// ^ must be a single '=' !!!!
echo '<tr><td>' . $row["Service"] . '</td>';
echo '<td>' . $row["Status"] . '</td></tr>';
} ?>
</table>
Bir HTML tablosunda bir MySQL veritabanı birden fazla satır görüntülemek için. Benim soru nasıl benim kriterlere uyan hiçbir satır olup olmadığını belirlemek ve boş olduğunu belirten bir mesaj görüntüleyebilir olur .. nedir?