|
|
|
ต้องทำยังไงถึงจะแบ่งข้อมูลตามระดับได้ครับ แบบว่าต้องการแบ่งจำนวนครั้งให้รู้ว่ามีกี่ครั้ง |
|
|
|
|
|
|
|
แบบว่าต้องการให้แบ่งข้อมูลเป็น A-I กับ 1-5 แล้วแสดงจำนวนรายการของแต่ละอันออกมาว่ามีกี่ครั้งน่ะครับ
Code (PHP)
<?php include 'header.php'; ?>
<? if (empty($_SESSION['user_id'])) {
echo "<meta http-equiv='refresh' content='0;url=index.php'/>";
exit();
}
$ID=$_REQUEST[id];
$user_dep = $_SESSION[user_dep_id];
if($ID==''){?>
<h2>คณะกรรมการบริหารความเสี่ยง</h2>
<? }?>
<H1><small>รายงานความเสี่ยงทั้งหมด</small></H1>
<ol class="breadcrumb">
<li><a href="index.php"><i class="fa fa-home"></i> หน้าหลัก</a></li>
<li class="active"><i class="fa fa-envelope"></i> รายงานความเสี่ยงทั้งหมด</li>
</ol>
<form role="search" action='session_search.php' method='post' >
<div class="form-group input-group">
<input type='search' name='take_detail' placeholder='ค้นหาความเสี่ยง...' value='' class="form-control" >
<input type='hidden' name='method' value='take_detail5'>
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
<div class="row">
<div class="col-lg-12">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-star"></i> รายงานความเสี่ยงทั้งหมด</h3>
</div>
<div class="panel-body">
<?php
// สร้างฟังก์ชั่น สำหรับแสดงการแบ่งหน้า
function page_navigator($before_p,$plus_p,$total,$total_p,$chk_page){
global $e_page;
global $querystr;
$ID=$_REQUEST[id];
$urlfile = "Recurrence_risk.php"; // ส่วนของไฟล์เรียกใช้งาน ด้วย ajax (ajax_dat.php)
$per_page=10;
$num_per_page=floor($chk_page/$per_page);
$total_end_p=($num_per_page+1)*$per_page;
$total_start_p=$total_end_p-$per_page;
$pPrev=$chk_page-1;
$pPrev=($pPrev>=0)?$pPrev:0;
$pNext=$chk_page+1;
$pNext=($pNext>=$total_p)?$total_p-1:$pNext;
$lt_page=$total_p-4;
if($chk_page>0){?>
<a href="<?=$urlfile?>?s_page=<?=$pPrev.$querystr?>&&id=<?=$ID;?>" class="naviPN">Prev</a>
<?}
for($i=$total_start_p;$i<$total_end_p;$i++){
$nClass=($chk_page==$i)?"class='selectPage'":"";
if($e_page*$i<=$total){?>
<a href="<?=$urlfile;?>?s_page=<?=$i.$querystr;?>&&id=<?=$ID;?>" <?=$nClass;?> ><?=intval($i+1);?></a>
<?}
}
if($chk_page<$total_p-1){?>
<a href="<?=$urlfile?>?s_page=<?=$pNext.$querystr?>&&id=<?$ID;?>" class="naviPN">Next</a>
<?}
}
if($ID==''){
if ($_SESSION[take_detail] != '') {
$Search = trim($_SESSION[take_detail]);
echo "แสดงคำที่ค้นหา : " . $Search;
//คำสั่งค้นหา
$q = "select count(t1.takerisk_id) as num_risk, s1.name as sub_name, c1.name as cate_name, t1.recycle from takerisk t1
inner join subcategory s1 on t1.subcategory=s1.subcategory
inner join category c1 on t1.category=c1.category
where (t1.recycle='N' and t1.subcategory=s1.subcategory) and s1.name like '%$Search%' and t1.subcategory !=''
order by num_risk desc";
} else {
$q = "select count(t1.takerisk_id) as num_risk, s1.name as sub_name, c1.name as cate_name, t1.recycle from takerisk t1
inner join subcategory s1 on t1.subcategory=s1.subcategory
inner join category c1 on t1.category=c1.category
where t1.recycle='N' and t1.subcategory=s1.subcategory and t1.subcategory !=''
group by sub_name order by num_risk desc";
}
}elseif($ID=='1'){
if ($_SESSION[take_detail] != '') {
$Search = trim($_SESSION[take_detail]);
echo "แสดงคำที่ค้นหา : " . $Search;
//คำสั่งค้นหา
$q = "select count(t1.takerisk_id) as num_risk, s1.name as sub_name, c1.name as cate_name, t1.recycle from takerisk t1
inner join subcategory s1 on t1.subcategory=s1.subcategory
inner join category c1 on t1.category=c1.category
where (t1.recycle='N' and t1.subcategory=s1.subcategory) and s1.name like '%$Search%' and t1.subcategory !=''
and t1.res_dep=$user_dep order by num_risk desc";
} else {
$q = "select count(t1.takerisk_id) as num_risk, s1.name as sub_name, c1.name as cate_name, t1.recycle from takerisk t1
inner join subcategory s1 on t1.subcategory=s1.subcategory
inner join category c1 on t1.category=c1.category
where t1.recycle='N' and t1.subcategory=s1.subcategory and t1.subcategory !='' and t1.res_dep=$user_dep
group by sub_name order by num_risk desc";
}
}
$qr=mysql_query($q);
if($qr==''){exit();}
$total=mysql_num_rows($qr);
$e_page=10; // กำหนด จำนวนรายการที่แสดงในแต่ละหน้า
if(!isset($_GET['s_page'])){
$_GET['s_page']=0;
}else{
$chk_page=$_GET['s_page'];
$_GET['s_page']=$_GET['s_page']*$e_page;
}
$q.=" LIMIT ".$_GET['s_page'].",$e_page";
$qr=mysql_query($q);
if(mysql_num_rows($qr)>=1){
$plus_p=($chk_page*$e_page)+mysql_num_rows($qr);
}else{
$plus_p=($chk_page*$e_page);
}
$total_p=ceil($total/$e_page);
$before_p=($chk_page*$e_page)+1;
echo mysql_error();
?>
<div class="table-responsive">
<a class="btn btn-success" download="recurrence_risk.xls" href="#" onClick="return ExcellentExport.excel(this, 'datatable', 'Sheet Name Here');">Export to Excel</a><br><br>
<table id="datatable" class="table table-bordered table-hover table-striped tablesorter">
<TR>
<th width='5%' rowspan="3" align="center" valign="middle"><CENTER><p>ลำดับ <i class="fa fa-sort"></i></p></CENTER></th>
<th width='50%' rowspan="3" align="center" valign="middle"><CENTER><p>รายการ <i class="fa fa-sort"></i></p></CENTER></th>
<th width='25%' rowspan="3" align="center" valign="middle"><CENTER><p>ด้าน <i class="fa fa-sort"></i></p></CENTER></th>
<th colspan="15"><CENTER><p>ระดับความรุนแรง(จำนวนครั้ง)<i class="fa fa-sort"></i></p></CENTER></th>
</TR>
<TR>
<th colspan="9"><center>ทางคลินิก(A-I)</center> <center>
</center></th>
<th colspan="5"><center>ทั่วไป(1-5)</center></th>
<th rowspan="2"><center>รวมทั้งหมด</center></th>
</TR>
<TR>
<th align="center">A</th>
<th align="center">B</th>
<th align="center">C</th>
<th align="center">D</th>
<th align="center">E</th>
<th align="center">F</th>
<th align="center">G</th>
<th align="center">H</th>
<th align="center">I</th>
<th align="center">1</th>
<th align="center">2</th>
<th align="center">3</th>
<th align="center">4</th>
<th align="center">5</th>
</TR>
<?
$i = 1;
while ($total_risk = mysql_fetch_assoc($qr)) {
if($bg == "#F4F4F4") { //ส่วนของการ สลับสี
$bg = "#FFFFFF";
}else{
$bg = "#F4F4F4";
} ?>
<?
<tr>
<td><center><?= ($chk_page * $e_page) + $i ?></center></td>
<td><?= $total_risk[sub_name]; ?></td>
<td><center><?= $total_risk[cate_name]; ?></center></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td align="center"><?= $total_risk[num_risk]; ?></td>
</tr>
<?
$i++;
}
?>
</table>
</div>
</div>
</div>
<?php
if ($total > 0) {
echo mysql_error();
?>
<div class="browse_page">
<?php
// เรียกใช้งานฟังก์ชั่น สำหรับแสดงการแบ่งหน้า
page_navigator($before_p, $plus_p, $total, $total_p, $chk_page);
echo " <font size='2'>มีจำนวนทั้งหมด <B>$total รายการ</B> จำนวนหน้าทั้งหมด ";
echo $count = ceil($total / 10) . " <B>หน้า</B></font>";
}
?>
</div>
<?php include 'footer.php'; ?>
ส่วนนี่คือภาพที่ต้องการครับ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2017-04-10 14:45:56 |
By :
bakaman |
View :
720 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมต้องเอาโค้ดไปใส่ช่วงไหนของบรรทัดครับ แบบว่าตอนนี้กำลังมึนมาก รบกวนเวลาผู้รู้หน่อยนะครับ
|
|
|
|
|
Date :
2017-04-10 14:48:10 |
By :
bakaman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดันๆ ต้องการคำตอบมากครับ หัดเขียนได้ไม่นาน ช่วยหน่อยนะครับ
|
|
|
|
|
Date :
2017-04-11 11:03:16 |
By :
bakaman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขนาดคนเขียนเองยังมึน
แล้วคนอื่นจะช่วยยังไงเนี่ย
การนับ ก็ใช้ count
การรวม ก็ใช้ sum
|
|
|
|
|
Date :
2017-04-11 11:39:49 |
By :
คนมีเสน่ห์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้ผมไม่ได้เขียนเองครับ เขามีโค้ดตัวนี้มาให้แล้วในระบบ ผมก็มานั่งศึกษาอยู่นานก็ยังมึนอยู่เลย
|
|
|
|
|
Date :
2017-04-11 11:50:18 |
By :
bakaman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดันๆ ช่วยหน่อยนะครับ ผมมือใหม่มาก พึ่งหัดเขียน
|
|
|
|
|
Date :
2017-04-18 09:32:55 |
By :
bakaman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|