Editing: /home/goacom/6club.princedev.shop/main/detavannunirvahisi_aidudi_zehn.php
<?php // Database connection info $dbDetails = array( 'host' => 'localhost', 'user' => 'goacom_6club', 'pass' => 'goacom_6club', 'db' => 'goacom_6club' ); // DB table to use //$table = 'tbl_user'; $table = <<<EOT ( SELECT bajikattuttate_aidudi_zehn.byabaharkarta, bajikattuttate_aidudi_zehn.ojana, bajikattuttate_aidudi_zehn.ketebida, (SELECT mobile FROM shonu_subjects WHERE id = bajikattuttate_aidudi_zehn.byabaharkarta) AS mobile, (SELECT motta FROM shonu_kaichila WHERE balakedara = bajikattuttate_aidudi_zehn.byabaharkarta) AS balance FROM bajikattuttate_aidudi_zehn WHERE bajikattuttate_aidudi_zehn.kalaparichaya = (SELECT atadaaidi FROM gelluonduhogu_aidudi_zehn ORDER BY gelluonduhogu_aidudi_zehn.kramasankhye DESC LIMIT 1) ) temp EOT; // Table's primary key $primaryKey = 'byabaharkarta'; // Array of database columns which should be read and sent back to DataTables. // The `db` parameter represents the column name in the database. // The `dt` parameter represents the DataTables column identifier. $columns = array( array( 'db' => 'byabaharkarta', 'dt' => 0 ), array( 'db' => 'ojana', 'dt' => 1, 'formatter' => function( $d, $row ) { return ($d == 10)?'Red':(($d == 11)?'Green':(($d == 12)?'Violet':(($d == 13)?'Big':(($d == 14)?'Small':$d)))) ; } ), array( 'db' => 'ketebida', 'dt' => 2), array( 'db' => 'mobile', 'dt' => 3 ), array( 'db' => 'balance', 'dt' => 4 ) ); // Include SQL query processing class require 'ssp_without_quote_table.php'; // Output data as json format echo json_encode( SSP::simple( $_GET, $dbDetails, $table, $primaryKey, $columns ) ); ?>
💾 Save