คำตอบที่ได้รับเลือกจากเจ้าของกระทู้
ความคิดเห็นที่ 1
วิธีเกลือสุดๆ เลยคือเพิ่ม tag refresh ตามเวลา
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้<meta http-equiv="refresh" content="เวลาวินาที"> เพิ่มใน tag <head>
แต่วิธีที่ดีกว่านั้นคือใช้ AJAX ดึงข้อมูลจากเซิร์ฟเวอร์โดยเรียกข้อมูลจาก PHP อีกที่หนึ่ง แล้วนำมาแสดงผล (ใช้ javascript จัดการ) ตามคาบเวลา แนะนำใช้ jquery ในการจัดการ
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้<meta http-equiv="refresh" content="เวลาวินาที"> เพิ่มใน tag <head>
แต่วิธีที่ดีกว่านั้นคือใช้ AJAX ดึงข้อมูลจากเซิร์ฟเวอร์โดยเรียกข้อมูลจาก PHP อีกที่หนึ่ง แล้วนำมาแสดงผล (ใช้ javascript จัดการ) ตามคาบเวลา แนะนำใช้ jquery ในการจัดการ
▼ กำลังโหลดข้อมูล... ▼
แสดงความคิดเห็น
คุณสามารถแสดงความคิดเห็นกับกระทู้นี้ได้ด้วยการเข้าสู่ระบบ
กระทู้ที่คุณอาจสนใจ
อ่านกระทู้อื่นที่พูดคุยเกี่ยวกับ
PHP
MySQL
วิทยาศาสตร์คอมพิวเตอร์
การออกแบบฐานข้อมูล
การพัฒนา Web Application
ขอความรู้หน่อยครับ PHP ดึงข้อมูล real time จาก database ใส่ยังไงครับ สร้างด้วย Dream
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_Garage, $Garage);
$query_Garage = "SELECT * FROM tbgarage";
$Garage = mysql_query($query_Garage, $Garage) or die(mysql_error());
$row_Garage = mysql_fetch_assoc($Garage);
$totalRows_Garage = mysql_num_rows($Garage);
?>
<!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>Garage</title>
<style type="text/css">
body {
background-image: url(car.jpg);
font-size: 36px;
text-align: center;
font-weight: bold;
}
.หัวข้อ {
font-size: 45px;
font-weight: bold;
}
</style>
</head>
<body>
<p class="หัวข้อ">*สถานะ*</p>
<table border="1" align="center">
<tr>
<td width="300">ช่อง 1</td>
<td width="300">ช่อง 2</td>
<td width="300">ช่อง 3</td>
</tr>
<?php do { ?>
<tr>
<td height="101"><?php echo $row_Garage['status1']; ?></td>
<td><?php echo $row_Garage['status2']; ?></td>
<td><?php echo $row_Garage['status3']; ?></td>
</tr>
<?php } while ($row_Garage = mysql_fetch_assoc($Garage)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($Garage);
?>