PHP - Mysql Table

PHP - Mysql Table

iso sioiso sio Posts: 15Questions: 3Answers: 0

Hi There
i like to know how to use mysql table instead of json for selecting data with the child Row ?

Currently below is given in Example

$(document).ready(function() {
var table = $('#example').DataTable( {
"ajax": "objects.json",
"columns": [
{
"className": 'details-control',
"orderable": false,
"data": null,
"defaultContent": ''
},
{ "data": "a" },
{ "data": "b" },
{ "data": "c" }
],
"order": [[1, 'asc']]

} );

but i 'd like to select data from mysql Table
and i don't know how to select my php file
Thanks
iso

Answers

This discussion has been closed.