รบกวนหน่อยครับ...ประกาศ session แล้ว error แต่หน้าอื่นๆ ไม่มีปัญหา
Code (PHP)
<?PHP
session_start();
date_default_timezone_set('Asia/Bangkok');
date("H:i:s");
?>
session_start(); ต้องอยู่บรรทัดแรกสุด
Date :
2015-05-29 17:10:10
By :
randOmizE
เอาเออเร่อร์มาลงให้ดูหน่อยครับ ภาพที่ทำมันเสียมองไม่เห็น
Date :
2015-05-30 07:29:56
By :
Chaidhanan
CODE PHP ครับ
Code (PHP)
<?php
session_start();
require_once("connect.php");
if(!isset($_SESSION['UserID']))
{
echo '<h3>กรุณาเข้าสู่ระบบ... <a href="index.php"> กลับ</a><h3>';
exit();
}
//*** Update Last Stay in Login System
$sql = "UPDATE member SET LastUpdate = NOW() WHERE UserID = '".$_SESSION["UserID"]."' ";
$query = mysqli_query($con,$sql);
//*** Get User Login
$strSQL = "SELECT * FROM member WHERE UserID = '".$_SESSION['UserID']."' ";
$objQuery = mysqli_query($con,$strSQL);
$objResult = mysqli_fetch_array($objQuery,MYSQLI_ASSOC);
?>
<?PHP
date_default_timezone_set('Asia/Bangkok');
date("H:i:s");
?>
<?php
class Paginator{
var $items_per_page;
var $items_total;
var $current_page;
var $num_pages;
var $mid_range;
var $low;
var $high;
var $limit;
var $return;
var $default_ipp;
var $querystring;
var $url_next;
function Paginator()
{
$this->current_page = 1;
$this->mid_range = 7;
$this->items_per_page = $this->default_ipp;
$this->url_next = $this->url_next;
}
function paginate()
{
if(!is_numeric($this->items_per_page) OR $this->items_per_page <= 0) $this->items_per_page = $this->default_ipp;
$this->num_pages = ceil($this->items_total/$this->items_per_page);
if($this->current_page < 1 Or !is_numeric($this->current_page)) $this->current_page = 1;
if($this->current_page > $this->num_pages) $this->current_page = $this->num_pages;
$prev_page = $this->current_page-1;
$next_page = $this->current_page+1;
if($this->num_pages > 10)
{
$this->return = ($this->current_page != 1 And $this->items_total >= 10) ? "<a class=\"paginate\" href=\"".$this->url_next.$this->$prev_page."\">« Previous</a> ":"<span class=\"inactive\" href=\"#\">« Previous</span> ";
$this->start_range = $this->current_page - floor($this->mid_range/2);
$this->end_range = $this->current_page + floor($this->mid_range/2);
if($this->start_range <= 0)
{
$this->end_range += abs($this->start_range)+1;
$this->start_range = 1;
}
if($this->end_range > $this->num_pages)
{
$this->start_range -= $this->end_range-$this->num_pages;
$this->end_range = $this->num_pages;
}
$this->range = range($this->start_range,$this->end_range);
for($i=1;$i<=$this->num_pages;$i++)
{
if($this->range[0] > 2 And $i == $this->range[0]) $this->return .= " ... ";
if($i==1 Or $i==$this->num_pages Or in_array($i,$this->range))
{
$this->return .= ($i == $this->current_page And $_GET['Page'] != 'All') ? "<a title=\"Go to page $i of $this->num_pages\" class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" title=\"Go to page $i of $this->num_pages\" href=\"".$this->url_next.$i."\">$i</a> ";
}
if($this->range[$this->mid_range-1] < $this->num_pages-1 And $i == $this->range[$this->mid_range-1]) $this->return .= " ... ";
}
$this->return .= (($this->current_page != $this->num_pages And $this->items_total >= 10) And ($_GET['Page'] != 'All')) ? "<a class=\"paginate\" href=\"".$this->url_next.$next_page."\">Next »</a>\n":"<span class=\"inactive\" href=\"#\">» Next</span>\n";
}
else
{
for($i=1;$i<=$this->num_pages;$i++)
{
$this->return .= ($i == $this->current_page) ? "<a class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" href=\"".$this->url_next.$i."\">$i</a> ";
}
}
$this->low = ($this->current_page-1) * $this->items_per_page;
$this->high = ($_GET['ipp'] == 'All') ? $this->items_total:($this->current_page * $this->items_per_page)-1;
$this->limit = ($_GET['ipp'] == 'All') ? "":" LIMIT $this->low,$this->items_per_page";
}
function display_pages()
{
return $this->return;
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" type="image/x-icon" href="image/icon.png" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>รายละเอียดวันลาพนักงาน</title>
<!-- Bootstrap -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
<link rel="stylesheet" media="all" type="text/css" href="js/jquery-ui.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/datepicker.js"></script>
<script type="text/javascript" src="js/jquery-ui-sliderAccess.js"></script>
<script type="text/javascript" src="js/export-excel.js"></script>
</head>
<style type="text/css">
<!--
.paginate {
font-family: Arial, Helvetica, sans-serif;
font-size: .7em;
}
a.paginate {
border: 1px solid #000080;
padding: 2px 6px 2px 6px;
text-decoration: none;
color: #000080;
}
h2 {
font-size: 12pt;
color: #003366;
}
h2 {
line-height: 1.2em;
letter-spacing:-1px;
margin: 0;
padding: 0;
text-align: left;
}
a.paginate:hover {
background-color: #000080;
color: #FFF;
text-decoration: underline;
}
a.current {
border: 1px solid #000080;
font: bold .7em Arial,Helvetica,sans-serif;
padding: 2px 6px 2px 6px;
cursor: default;
background:#000080;
color: #FFF;
text-decoration: none;
}
span.inactive {
border: 1px solid #999;
font-family: Arial, Helvetica, sans-serif;
font-size: .7em;
padding: 2px 6px 2px 6px;
color: #999;
cursor: default;
}
-->
</style>
<body>
<?php
$startDate = date ("Y-m-d",strtotime($_REQUEST['search_start']));
$endDate = date ("Y-m-d", strtotime($_REQUEST['search_end']));
$objConnect = mysql_connect("localhost","root","pccfbcp") or die("Error Connect to Database");
$objDB = mysql_select_db("leave");
$strSQL = "SELECT record.*, register.Emp_Name, department.Dep_Name, leave_type.Leave_Name FROM record inner join register on record.Emp_ID=register.Emp_ID inner join department on register.Dep_ID=department.Dep_ID inner join leave_type on leave_type.Leave_ID=record.Rec_Type where ((Date_start between '".$startDate."' and '".$endDate."') and (Date_end between '".$startDate."' and '".$endDate."'))";
$rs_report_order_detail = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$row_rs_report_order_detail = mysql_fetch_assoc($rs_report_order_detail);
mysql_query("SET NAMES UTF8") ;
$Num_Rows = mysql_num_rows($rs_report_order_detail);
$Per_Page = 3; // Per Page
$Page = isset($_GET["Page"]) ? intval( $_GET['Page']) : 1;
if($Page<1) $Page=1;
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by register.Emp_Name ASC LIMIT $Page_Start , $Per_Page";
$rs_report_order_detail = mysql_query($strSQL);
?>
<body <div class="imageholder" style="background-image:url(image/bg.jpg);"></div>
<nav class="navbar" "navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
</button>
<a href="main.php" class="navbar-brand"><B><img src="image/home.png" width="31" height="30"> โปรแกรมบันทึกวันลาออนไลน์ สาขาชุมพร</B></a></a>
</div>
<h5 align="right"> <font color="#660099"><B>ยินดีต้อนรับ : <?php echo $objResult["Name"];?></B><BR><a href="logout.php"> <BR><font color="#FF0033"><B>ออกจากระบบ</B></a></font></font></h5>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-2 sidebar">
<ul class="nav nav-sidebar">
<li class="active"><h5><u><font color="#009ACD">พนักงาน</font></u></h5></li>
<li><a href="insert.php">☺ เพิ่มพนักงานใหม่</a></li>
<li><a href="emp-edit.php">☺ แก้ไขชื่อพนักงาน</a></li>
<li><a href="emp-del.php">☺ ลบชื่อพนักงาน</a></li>
</ul>
<ul class="nav nav-sidebar">
<li><h5><u><font color="#009ACD">บันทึกวันลา</font></u></h5></li>
<li><a href="record-day.php">☺ รายวัน</a></li>
<li><a href="record-month.php">☺ รายเดือน</a></li>
</ul>
<ul class="nav nav-sidebar">
<li>
<h5><u><font color="#009ACD">รายงาน</font></u></h5></li>
<li><a href="leave-detail.php">☺ รายละเอียดวันลา</a></li>
<li><a href="rpt-total.php">☺ สรุปวันลา</a></li>
<li><a href="xls-export.php">☺ Export ข้อมูล</a></li>
</ul>
</div>
<script language="JavaScript" type="text/JavaScript">
function check_key_number() {
use_key=event.keyCode
if (use_key != 13 && (use_key < 48) || (use_key > 57)) {
event.returnValue = false;
}
}
</script>
<form name="form1" method="post" action="">
<img src="image/report.jpg" width="45" height="35">ค้นหาระหว่างวันที่ :
<input type="text" name="search_start" id="search_start" onkeypress="check_key_number();"autocomplete="off"> ถึง
<input type="text" name="search_end" id="search_end" onkeypress="check_key_number();"autocomplete="off">
<input type="submit" name="button" id="button" value="ตกลง"><br>
</form>
<BR>
<div id="dvData">
<table border="0" >
<td colspan="6" style="color:blue"><B>รายงานสรุปวันลาวันที่ "<?PHP $startDate = date("d-m-Y",strtotime($_REQUEST['search_start']));
echo"<font color=\"red\">$search_start</font></div>";?>" ถึง "<?PHP $endDate = date("d-m-Y", strtotime($_REQUEST['search_end']));
echo"<font color=\"red\">$search_end</font>";?>"</B></td>
<table width="976" class="table-bordered">
<tr>
<th width="172" height="34"bgcolor="#CCCCCC"><B><center>ชื่อ-นามสกุล<br></center></B></th>
<th width="106" bgcolor="#CCCCCC"><B><center>วันที่เริ่มลา<br></center></B></th>
<th width="98" bgcolor="#CCCCCC"><B><center>วันที่สิ้นสุด<br></center></B></th>
<th width="86" bgcolor="#CCCCCC"><B><center>จำนวนวัน<br></center></B></th>
<th width="102" bgcolor="#CCCCCC"><B><center>จำนวนชั่วโมง</center></B></th>
<th width="112" bgcolor="#CCCCCC"><B><center>ประเภท</center></B></th>
<th width="268" bgcolor="#CCCCCC"><B><center>สาเหตุ</center></B></th>
</tr>
<?php
while($objResult = mysql_fetch_array($rs_report_order_detail))
{
?>
<?php
do {
$iLoop = ($old_record == $objResult['Emp_Name'])? $iLoop : ++$iLoop ;
$bgcolor = (($iLoop%2)==0)?"#FFFFFF":"#EEEEEE";
?>
<tr bgcolor="<?php echo $bgcolor ;?>">
<td bgcolor="<?php echo $bgcolor ;?>"><?php echo $objResult['Emp_Name']; ?></td>
<td bgcolor="<?php echo $bgcolor ;?>"><center><?php echo date("d-m-Y",strtotime($objResult['Date_start'])); ?></center></td>
<td bgcolor="<?php echo $bgcolor ;?>"><center><?php echo date("d-m-Y", strtotime($objResult['Date_end'])); ?></td>
<td bgcolor="<?php echo $bgcolor ;?>"><center><?php echo $objResult['Rec_Day']; ?></center></td>
<td bgcolor="<?php echo $bgcolor ;?>"><center><?php echo $objResult['Rec_Hour']; ?></center></td>
<td bgcolor="<?php echo $bgcolor ;?>"><?php echo $objResult['Leave_Name']; ?></td>
<td bgcolor="<?php echo $bgcolor ;?>"><?php echo $objResult['Rec_Com']; ?></td>
</tr>
<?php
$old_record = $objResult['Emp_Name'] ;
} while ($objResult = mysql_fetch_assoc($rs_report_order_detail));
?>
<?php
}
?>
</table>
<br>
Total <?php echo $Num_Rows;?> Record
<?php
$pages = new Paginator;
$pages->items_total = $Num_Rows;
$pages->mid_range = 10;
$pages->current_page = $Page;
$pages->default_ipp = $Per_Page;
$pages->url_next = '?search_start='.$startDate.'&search_end='.$endDate.'&Page=';
$pages->paginate();
echo $pages->display_pages()
?>
<?php
mysql_close($objConnect);
?>
<BR><BR>
<!-- <input type="button" id="excellink" value="Export Excel" /> -->
</body>
</html>
Date :
2015-05-31 13:15:12
By :
saovarott159
$startDate = date ("Y-m-d", isset($_REQUEST['search_start'])? strtotime($_REQUEST['search_start']) : time() );
หรือ
$startDate = isset($_REQUEST['search_start'])? date ("Y-m-d", strtotime($_REQUEST['search_start'])) : '' ;
เมื่อกำหนดค่าด้านบน result ที่ได้จากการคิวรี่
ก็ต้องตรวจสอบก่อนว่ามี record หรือไม่ ก่อนที่จะทำการ fetch ค่า มาใสใน ตัวแปร
ถ้าไม่มี record มันจะเอ่อเร่อร์
$rs_report_order_detail = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$row_rs_report_order_detail = mysql_fetch_assoc($rs_report_order_detail);
ตัวอย่างด้านบน แก้ไขนะครับ ให้ตรวจสอบ จำนวนเรคคอร์ดก่อน
และการ generate statement สำหรับคิวรี่ ก็ควรมีการตรวจสอบ ค่าของวันที่ก่อนว่า ถูกต้องหรือไม่
flow control ผิดเยอะมากในโปรแกรมด้านบน if else มีความสำคัญในการตรวจสอบข้อมูล อย่าขี้เกียจที่จะเขียน
ใน paginator class เมื่อเป็น คลาสที่ใช้งานโดยทั่วไป ไม่ควรใช้ $_GET $_POST ควรใช้ การส่งค่าตัวแปรเข้่าไป
เพื่อความชัดเจนในการเรียกใช้ตัวแปร เพราะ ถ้าใช้ GET ในการตรวจสอบ ก็ไม่สามารถส่งค่า เป็น POST มาได้
ไม่มีความสดวกในการส่งพารามิเตอร์
และลองเปลี่ยนมาใช้ object ของ mysqli ดูครับ น่าจะเขียนได้ง่าย
Code (PHP)
$db=new mysqli( 'host', 'user', 'psw', 'dbname');
$rs=$db->query('select .....') or die ( $db->error);
while( $ro=$rs->fetch_assoc()){
.......
}
Date :
2015-06-01 11:47:24
By :
Chaidhanan
ตัวแปรที่ใส่ค่าไว้ยังไม่ถูกกำหนดค่าให้มันครับ อยู่ๆ ไปเรียกใช้มันเฉยๆ มันเลยขึ้นข้อความแบบนั้น
ถ้าไม่อยากให้มันขึ้นก็ไปเปลี่ยน error_reporting หรือ ถ้าไม่งั้นก็ไปกำหนดค่าเริ่มต้นให้ตัวแปรครับ
Date :
2015-06-03 14:20:56
By :
ฟ
Load balance : Server 05