hi i cant seem to get my datatable to work
its not going into a row like other datatables are please help
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Name</th>
<th>owner</th>
<th>Created</th>
<th>Minutes</th>
<th>satoshi</th>
<th>Claim</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>owner</th>
<th>Created</th>
<th>Minutes</th>
<th>satoshi</th>
<th>Claim</th>
</tr>
</tfoot>
<tbody>
<tr>
<?php
//while($res = mysql_fetch_array($result)) { // mysql_fetch_array is deprecated, we need to use mysqli_fetch_array
while($row = mysqli_fetch_array($result)) {
echo "<td><a href='".$row['faucet_claim']."' class='btn btn-success'>".$row['faucet_name']."</a></td>";
echo "<td><span class='btn btn-xs btn-info'>".$row['faucet_owner']."</span></td>";
echo "<td><span class='btn btn-xs btn-info'>".$row['faucet_created']."</span></td>";
echo "<td><span class='btn btn-xs btn-info'>".$row['faucet_minutes']."</span></td>";
echo "<td><span class='btn btn-xs btn-info'>".$row['faucet_coin']."</span></td>";
echo "<td><a href='".$row['faucet_claim']."' class='btn btn-success'>claim</a></td>";
}
?>
</tr>
</tbody>
</table>
oh by the way this is what it shows