Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > เขียนcodeคำนวณเวลาจาก access ช่วยหน่อยครับ คือเขียน code ดึงข้อมูลจาก access แสดงผลออกมาตามวันที่



 

เขียนcodeคำนวณเวลาจาก access ช่วยหน่อยครับ คือเขียน code ดึงข้อมูลจาก access แสดงผลออกมาตามวันที่

 



Topic : 028357



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์




คือเขียนcodeดึงข้อมูลจากaccessแสดงผลออกมาตามวันที่ที่searchหา(ข้อมูลจากACCE
SSมีหลายๆวันที่รวมกันอยู่)จากนั้นต้องการให้คำนวนผลของเวลาในหน้าwebpageนั้นๆ(ที่ดึงมาแสดงผล)สามารถดึงข้อมูลมาแสดงผลได้แล้วต้องการที่จะคำนวนแต่ไปต่อ
ไม่ได้..ช่วยทีครับ เพิ่งเริ่มต้นหัดเขียน
Code (PHP)
<?php
<html>
<head>
<title>OEE On line</title>
<style type="text/css">
<!--
.style2 {font-size: 12px}
.style3 {color: #FFFFFF}
.style8 {font-size: 10px; color: #000000; }
.style11 {font-size: 14px}
.style1 {font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
}
-->
</style>
</head>
<body>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
 <th>Keyword
 <input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<p>
  <?
if($_GET["txtKeyword"] != "")
{
$objConnect = odbc_connect("oee","","") or die("Error Connect to Database");
// Search By CustomerID
$strSQL = "SELECT  * FROM oee  WHERE (currentdate LIKE '%".$_GET["txtKeyword"]."%' )";
$objExec = odbc_exec($objConnect, $strSQL) or die ("Error Execute [".$strSQL."]");
if($objConnect)
   {
        echo "Database Connected.";
   }
    else
   {
       echo "Database Connect Failed.";
    }
$Num_Rows = 0;
while(odbc_fetch_row($objExec))$Num_Rows++; // Count Record

$Per_Page = 57;   // 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)+1;
 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;
  }
  $Page_End = $Per_Page * $Page;

  ?>
<table width="1001" border="1">
  <tr>
    <th width="83" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">SO./Line No</div>
    </div></th>
    <th width="72" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Part No #</div>
    </div></th>
    <th width="53" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Lot #</div>
    </div></th>
    <th width="45" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Qty.In</div>
    </div></th>
    <th width="45" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Extra</div>
    </div></th>
    <th width="44" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">CSD</div>
    </div></th>
    <th width="123" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Quanitity per Binning</div>
    </div></th>
    <th width="53" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Temp.</div>
    </div></th>
    <th width="55" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Pressure</div>
    </div></th>
    <th width="42" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Start</div>
    </div></th>
    <th width="51" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Stop</div>
    </div></th>
    <th width="51" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">TTL Time</div>
    </div></th>
    <th width="41" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Code</div>
    </div></th>
    <th width="155" bgcolor="#003366"> <div align="center" class="style11 style19 style2 style3">
      <div align="center">Note</div>
    </div></th>
  </tr>
   <?
  for($i=$Page_Start;$i<=$Page_End;$i++)
  {
     $objResult = odbc_fetch_array($objExec,$i);
   ?>
    <tr>
<td><div align="center" class="style8">
  <div align="center">
    <?=$objResult["so"];?>
  </div>
</div></td>
<td><div align="center"><span class="style8">
  <?=$objResult["PartNo"];?>
</span></div></td>
<td><div align="center"><span class="style8">
  <?=$objResult["Lot"];?>
</span></div></td>
<td><div align="center" class="style8">
  <div align="center">
    <?=$objResult["Qty"];?>
  </div>
</div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["Extra Units"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["CSD"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["Quanitity per Binning"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["Temp"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["Pressure"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["start"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["stop"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["value_time"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["Code"];?>
</span></div></td>
<td align="right"><div align="center"><span class="style8">
  <?=$objResult["item"];?>
</span></div></td>
</tr>
 <?
   }
 ?>
</table>
?>




Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-06-18 05:29:14 By : pongsatorn06 View : 2302 Reply : 1
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

PHP Compare Date/Time หรือ PHP DateDiff / TimeDiff






Date : 2009-06-18 13:27:31 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : เขียนcodeคำนวณเวลาจาก access ช่วยหน่อยครับ คือเขียน code ดึงข้อมูลจาก access แสดงผลออกมาตามวันที่
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่