Hello,
I'm a PHP programmer and needs help with your code. I've added SQL that fetch the data from my database, everything works except for the multiple field search. I don't know what's wrong. There's no errors that I can find. Here is my code.
For the Table > tbody
<tbody>
<?php while($rowData = mysql_fetch_assoc($queryData)){ ?>
<tr class="gradeA">
<td class="center"><?php echo $rowData["Tr_id"]; ?><input type="checkbox" name="verify[]" id="desc" value="<?php echo $rowData["Tr_id"]; ?>" class="inputFields" <?php echo $rowData["Tr_verify"]; ?>/></td>
<td class="center"><?php echo $rowData["Tr_deposit"]; ?></td>
<td class="center"><?php echo $rowData["Tr_desc"]; ?></td>
<td class="center"><?php echo $rowData["Tr_bankCheck"]; ?></td>
<td class="center"><?php echo $rowData["Tr_check"]; ?></td>
<td class="center"><?php echo $rowData["Tr_due"]; ?></td>
<td class="center"><?php echo $rowData["Tr_credit"]; ?></td>
<td class="center"><?php echo $rowData["Tr_debit"]; ?></td>
</tr>
<?php } ?>
</tbody>
How can I fix this? Do I need to switch to DataTables Server-Side processing? But I have a checkbox.
Thank You,
Michael
I'm a PHP programmer and needs help with your code. I've added SQL that fetch the data from my database, everything works except for the multiple field search. I don't know what's wrong. There's no errors that I can find. Here is my code.
For the Table > tbody
<tbody>
<?php while($rowData = mysql_fetch_assoc($queryData)){ ?>
<tr class="gradeA">
<td class="center"><?php echo $rowData["Tr_id"]; ?><input type="checkbox" name="verify[]" id="desc" value="<?php echo $rowData["Tr_id"]; ?>" class="inputFields" <?php echo $rowData["Tr_verify"]; ?>/></td>
<td class="center"><?php echo $rowData["Tr_deposit"]; ?></td>
<td class="center"><?php echo $rowData["Tr_desc"]; ?></td>
<td class="center"><?php echo $rowData["Tr_bankCheck"]; ?></td>
<td class="center"><?php echo $rowData["Tr_check"]; ?></td>
<td class="center"><?php echo $rowData["Tr_due"]; ?></td>
<td class="center"><?php echo $rowData["Tr_credit"]; ?></td>
<td class="center"><?php echo $rowData["Tr_debit"]; ?></td>
</tr>
<?php } ?>
</tbody>
How can I fix this? Do I need to switch to DataTables Server-Side processing? But I have a checkbox.
Thank You,
Michael