ขอวิธีการนำเวลาจากฐานข้อมูล มาบวกกันทำยังไง(ไม่บวกกันในฐานข้อมูล)
ไม่เอาโค๊ดที่แก้ไขมาให้ดู ไม่รู้ว่าเขี่ยนไว้อย่างไร มันแก้ให้ไม่ได้หรอกครับ
เอามาทั้งหมดจะได้รู้ต้นสายปลายเหตุครับ
เอามาแค่บางส่วน ข้อมูลมันน้อยเกิน มันตอบไม่ได้ครับ
Date :
2015-07-20 09:19:42
By :
NewbiePHP
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<script language="javascript">
function all_select_change(){
var frm = document.frmSearch;
location.href='?item='+frm.unit.value+
'&item1='+frm.month.value+
'&item2='+frm.year.value;
}
function TimeDiff($hour)
{
return (strtotime($hour) + strtotime($hour))/ ( 60 * 60 ); // 1 Hour = 60*60
}
</script>
<?php
$unit = $_GET['item'];
$month = $_GET['item1'];
$year = $_GET['item2'];
$where = "WHERE 1";
if (!empty($unit)){
$where .= " AND unit ='".$unit."' ";
}
if (!empty($month)){
$where .= " AND month ='".$month."' ";
}
if (!empty($year)){
$where .= " AND year ='".$year."' ";
}
#echo $where."<br>"; #exit();
include"database.php";
$objDB = mysql_select_db("bpk");
$strSQL = "SELECT * FROM outageevent ";
$rsOutage = mysql_query($strSQL) or die ( mysql_error() ."<br>$strSQL");
// รูปแบบแสดง Error ที่ถูกต้อง
$Outage_Rows = mysql_num_rows($rsOutage);
$Per_Page = 50; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Outage_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Outage_Rows % $Per_Page)==0)
{
$Num_Pages =($Outage_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Outage_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by id ASC LIMIT $Page_Start , $Per_Page";
$objQuery1 = mysql_query($strSQL);
?>
<body>
<form name="frmSearch" >
<table width="840" border="1">
<tr>
<tr>
<th width="830">Select
<select name="unit" OnChange="all_select_change()">
<option value=""><-- Please Select Unit --></option>
<?php
$strSQL = "SELECT DISTINCT unit FROM outageevent ";
$objQuery = mysql_query($strSQL);
while($objResult = mysql_fetch_array($objQuery)){
$sel = ($_GET['item']==$objResult['unit']? 'SELECTED' : '');
}
?>
<option value="<?php echo $objResult["unit"];?>" <?php echo $sel;?>><?php echo $objResult["unit"];?></option>
</select>
<?php
if($_GET["item"] != "")
{
$strSQL = "SELECT * FROM outageevent WHERE unit = '".$_GET["item"]."' ";
$objQuery = mysql_query($strSQL);
$objResult2 = mysql_fetch_array($objQuery);
}
?>
<select name="month" OnChange="all_select_change()">
<option value=""><-- Please Select Month --></option>
<?php
$strSQL = "SELECT DISTINCT month FROM outageevent ";
$objQuery = mysql_query($strSQL);
while($objResult = mysql_fetch_array($objQuery))
{
$sel = ($_GET['item1']==$objResult['month']? 'SELECTED' : '');
}
?>
<option value="<?php echo $objResult["month"];?>" <?php echo $sel;?>><?php echo $objResult["month"];?></option>
</select>
<?php
if($_GET["item1"] != "")
{
$strSQL = "SELECT * FROM outageevent WHERE month = '".$_GET["item1"]."' ";
$objQuery = mysql_query($strSQL);
$objResult2 = mysql_fetch_array($objQuery);
}
?>
<select name="year" OnChange="all_select_change()">
<option value="" selected="selected"><-- Please Select Year --></option>
<?php
$strSQL = "SELECT DISTINCT year FROM outageevent ";
$objQuery = mysql_query($strSQL);
while($objResult = mysql_fetch_array($objQuery))
{ $sel = ($_GET['item2']==$objResult['year']? 'SELECTED' : '');
}
?>
<option value="<?php echo $objResult["year"];?>" <?php echo $sel;?>><?php echo $objResult["year"];?></option>
</select>
<?php
if($_GET["item2"] != "")
{
$strSQL = "SELECT * FROM outageevent WHERE year = '".$_GET["item2"]."' ";
$objQuery = mysql_query($strSQL);
$objResult2 = mysql_fetch_array($objQuery);
}
?></th>
</tr>
</tr>
</table>
<table width="50%" border="0" align="center">
<tr>
<td><a href="index.php">event ทั้งหมด</a></td>
<td><a href="top10.php">top 10 ชั่วโมงสูญเสีย</a></td>
<td><a href="count.php">ตารางสรุปจำนวน</a></td>
<td><a href="tool.php">ตารางสรุปอุปกรณ์</a></td>
</tr>
</table>
</form>
<table width="100%" height="70" border="1">
<tr bgcolor="#00FF00">
<th width="59"> <div align="center"> ลำดับ</div></th>
<th width="64"> <div align="center"> YEAR</div></th>
<th width="66"> <div align="center">MONTH </div></th>
<th width="69"> <div align="center">UNIT </div></th>
<th width="376"> <div align="center">EVENT </div></th>
<th width="56"> <div align="center">START DATE </div></th>
<th width="56"> <div align="center">START TIME </div></th>
<th width="47"> <div align="center">END DATE </div></th>
<th width="46"> <div align="center">END TIME </div></th>
<th width="47"> <div align="center">HOUR</div></th>
<th width="39"> <div align="center">TYPE</div></th>
<th width="36"> <div align="center">NET MW </div></th>
<th width="40"> <div align="center">MW LOSS</div></th>
</tr>
<?
$a=1;
while($objResult2 = mysql_fetch_array($objQuery1))
{
?>
<tr>
<td><div align="left"><?php echo $a;?></div></td>
<td><div align="left"><?php echo $objResult2["year"];?></div></td>
<td align="right"><?php echo $objResult2["month"];?> </td>
<td align="right"><?php echo $objResult2["unit"];?> </td>
<td><div align="left"><?php echo $objResult2["event"];?></div></td>
<td align="right"><?php echo $objResult2["sdate"];?> </td>
<td align="right"><?php echo $objResult2["stime"];?> </td>
<td align="right"><?php echo $objResult2["edate"];?> </td>
<td align="right"><?php echo $objResult2["etime"];?> </td>
<td align="right"><?php echo $objResult2["hour"];?> </td>
<td align="right"><?php echo $objResult2["etype"];?> </td>
<td align="right"><?php echo $objResult2["netmw"];?> </td>
<td align="right"><?php echo $objResult2["mwloss"];?> </td>
</tr>
<?
$a++;
}
?>
</table>
<table width="100%" height="52" border="1">
<tr>
<td width="123"><? echo "ชั่วโมงสะสม" ?></td>
<td width="967">
<?php
?>
</td>
</tr>
<tr>
<td><? echo "MW สะสม" ?></td>
<td><?php $query = "SELECT * FROM outageevent ";
$query_run = mysql_query($query);
$sum1= 0;
while ($row_Recordset1['mwloss']= mysql_fetch_assoc ($query_run)) {
$sum1+= $row_Recordset1['mwloss']['mwloss'];
}
echo $sum1; ?>
</td>
</tr>
</table>
<br>
Total <?= $Outage_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
$Page1 = $Page-5;
$Page2 = $Page+5;
if($i != $Page && $i >= $Page1 && $i <= $Page2)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
elseif($i==$Page)
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Num_Pages]'>... Next>></a> ";
}
mysql_close();
?>
</body>
</html>
ประวัติการแก้ไข 2015-07-20 13:26:38
Date :
2015-07-20 09:37:00
By :
lazyme
1 <form name="frmSearch" method="post" action=" ">
บันทัดบน เอาสีแดงออก เพราะในตัวโปรแกรมอ้างตัวแปรด้วย $_GET แต่ form กำหนดเป็น POST มันอ้างอิงไม่ได้
เอาออกก็จะเป็นส่งค่าตัวแปรแบบ GET ก็จะอ้างอิงได้
/////////////////////////////////////////////////////////////////
2 รูปแบบข้างล่างเขียนให้สั้นลงได้
Code (PHP)
if($_GET["item2"] == $objResult["year"])
{
$sel = "selected";
}
else
{
$sel = "";
}
แก้เป็น
Code (PHP)
$sel = ($_GET['item2'==$objResult['year']? 'SELECTED' : '');
//////////////////////////////////////////////////////////////////
3 แยกโค๊ด แสดง form กับ ตารางออกจากกัน ให้ชัดเจน มันซ้ำซ้อนกันอยู่อ่านแล้วเข้าใจยาก
ชื่อตัวแปรก็ตั้งให้อ่านแล้วเข้าใจง่ายๆ ว่าทำอะไรอยู่
ตัวอย่าง
Code (PHP)
$objDB = mysql_select_db("bpk");
$strSQL = "SELECT * FROM outageevent ";
$rsOutage = mysql_query($strSQL) or die ( mysql_error() ."<br>$strSQL"); // รูปแบบแสดง Error ที่ถูกต้อง
$Outage_Rows = mysql_num_rows($rsOutage);
อย่าตั้งชื่อให้เหมือนกัน เพื่อป้องกันการเรียกใช้ ทับของเก่า ของเก่าจะได้สามารถเรียกใช้ได้อีกไม่ต้องคิวรี่ใหม่
Date :
2015-07-20 10:18:37
By :
NewbiePHP
while loop วงเล็บปีกกา ไม่ครอบคลุม <option ครับ มันเลยไม่เอาค่าไปใส่ใน <option
ดูทุก while นะครับผิดทั้งหมด
Date :
2015-07-20 15:40:16
By :
NewbiePHP
ที่ javascript function ข้างล่าง
Code (JavaScript)
function all_select_change(){
var frm = document.frmSearch;
location.href='?item='+frm.unit.value+
'&item1='+frm.month.value+
'&item2='+frm.year.value;
}
แก้เป็น
Code (JavaScript)
function all_select_change(){
var frm = document.frmSearch;
var url_link = '?item='+frm.unit.value+'&item1='+frm.month.value+'&item2='+frm.year.value
if( confirm( url_link ) // เอาบันทัดนี้ออกเมื่อทดสอบเสร็จแล้ว
location.href=url_link;
}
เพื่อทดสอบ event ว่าได้เข้าสู่ function ที่กำหนดหรือเปล่า
Date :
2015-07-21 11:10:38
By :
NewbiePHP
if( confirm( url_link ) ) ตกวงเล็บไปตัวครับ ทำให้ javascript error พาลไม่ทำงานทั้งหมดครับ
ผมอยากเห็น url_link เป็นอย่างไร
และบันทัด 68 เพื่อ สีแดงเข้าไปด้วยครับ
068. $objQuery1 = mysql_query($strSQL) or die( mysql_error() . "<br>$strSQL");
Date :
2015-07-21 12:11:05
By :
NewbiePHP
Load balance : Server 00