gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 23:31:20 25 4
gpt4 key购买 nike

我希望演示 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);

如有任何帮助,我们将不胜感激。

最佳答案

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 :)

关于php - 我如何将 metronic ajax 表更改为 php mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37222906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com