http://datatables.net/examples/basic...iguration.html
adresindeki örneği bir türlü yapamıyorum. Arama, sayfalama vb. kendisi yapıyor yazıyor sitede ama hiçbir şey olmuyor, yanlışlık nerededir bilgi rica ederim.
<link rel="stylesheet" type="text/css" href="../css/datatables.min.css">
<script src="../js/jquery-1.11.3.min.js"></script>
<script src="../js/datatables.min.js"></script>
<script type="text/javascript" class="init">
$(document).ready(function() {
$('makina').DataTable();
} );
</script> <form><table id="makina" class="display" width="600" border="1">
<thead>
<tr>
<th scope="row">KODU</th>
<th>TANIM</th>
<th>TONAJ</th>
<th>MARKA</th>
<th>MODEL</th>
<th>YIL</th>
</tr>
</thead>
<?php do { ?>
<tbody>
<tr>
<th scope="row"><?php echo $row_RsMakinaList['Kodu']; ?></th>
<td><?php echo $row_RsMakinaList['MakinaTanim']; ?></td>
<td><?php echo $row_RsMakinaList['Tonaj']; ?></td>
<td><?php echo $row_RsMakinaList['Marka']; ?></td>
<td><?php echo $row_RsMakinaList['Model']; ?></td>
<td><?php echo $row_RsMakinaList['Yil']; ?></td>
</tr>
</tbody>
<?php } while ($row_RsMakinaList = mysql_fetch_assoc($RsMakinaList)); ?>
</table>
</form></div>
