简体   繁体   English

我如何将 metronic ajax 表更改为 php mysql

[英]How do i change metronic ajax table to php mysql

I want the demo ajax table to change in php mysql based but i'm not able to do that i have tried all but nothing seems to work for me..我希望演示 ajax 表在基于php mysql的情况下更改,但我无法做到这一点,我已经尝试了所有,但似乎没有任何效果对我有用..

Demo 演示

$iTotalRecords = 178;
  $iDisplayLength = intval($_REQUEST['length']);
  $iDisplayLength = $iDisplayLength < 0 ? $iTotalRecords : $iDisplayLength; 
  $iDisplayStart = intval($_REQUEST['start']);
  $sEcho = intval($_REQUEST['draw']);

  $records = array();
  $records["data"] = array(); 

  $end = $iDisplayStart + $iDisplayLength;
  $end = $end > $iTotalRecords ? $iTotalRecords : $end;

  $status_list = array(
    array("success" => "Pending"),
    array("info" => "Closed"),
    array("danger" => "On Hold"),
    array("warning" => "Fraud")
  );

  for($i = $iDisplayStart; $i < $end; $i++) {
    $status = $status_list[rand(0, 2)];
    $id = ($i + 1);
    $records["data"][] = array(
      '<input type="checkbox" name="id[]" value="'.$id.'">',
      $id,
      '12/09/2013',
      'Jhon Doe',
      'Jhon Doe',
      '450.60$',
      rand(1, 10),
      '<span class="label label-sm label-'.(key($status)).'">'.(current($status)).'</span>',
      '<a href="javascript:;" class="btn btn-xs default"><i class="fa fa-search"></i> View</a>',
   );
  }

  if (isset($_REQUEST["customActionType"]) && $_REQUEST["customActionType"] == "group_action") {
    $records["customActionStatus"] = "OK"; // pass custom message(useful for getting status of group actions)
    $records["customActionMessage"] = "Group action successfully has been completed. Well done!"; // pass custom message(useful for getting status of group actions)
  }

  $records["draw"] = $sEcho;
  $records["recordsTotal"] = $iTotalRecords;
  $records["recordsFiltered"] = $iTotalRecords;

  echo json_encode($records);

Any help would be appreciated.任何帮助,将不胜感激。

Hi i have managed to make it嗨,我已经成功了

   $counttotrun=mysqli_query($connect,"select * from metronic_table LIMIT $iDisplayStart, $end ");

for($i = $iDisplayStart; $i < $end; $i++)
{
$line_of_text= mysqli_fetch_array($counttotrun);
$records["data"][] = array(
'<input type="checkbox" name="id[]" value="'.$line_of_text['c1'].'">',
    $line_of_text['c2'],
    $line_of_text['c3'],
    $line_of_text['c4'],
   );

}

hope it helps someone else in future.希望它在未来帮助别人。 Funny but mostly i figure out my problem myself in stackoverflow :)有趣,但主要是我自己在 stackoverflow 中解决了我的问题:)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM