i can use this below code for getting results in server_side file, but i cant send any parameters such az sql query,fields for search, i want to create modular file for use single file in all projects . how to sending custom parameter for DataTables like with this code?
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "scripts/server_processing.php"
/*
"SQlQuery":"SELECT * FROM student",
"Columns" :" id , name , code"
*/
} );
} );