|
|
|
ค่าที่ echo ออกมา คือสงสัยว่าค่าที่เรา echo ออกมาจากฐานข้อมูล ไม่ทราบว่าเราจะสามารถบันทึกค่าที่เรา echo |
|
|
|
|
|
|
|
มันอยู่ที่เราจะเอาค่าตัวแปรที่เรา echo นั้นมาทำไรมากกว่าครับ
$a = $fetch['name'];
เราจะ echo $a; ก็ได้ หรือเราจะเอาค่า $a; ไป insert ลงอีกตารางก็ได้เช่นเดียวกันครับ
|
|
|
|
|
Date :
2010-03-20 16:24:44 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าจะเอา ไป insert อีกตารางไม่ทราบว่าจะต้องทำอย่างไรคะ
|
|
|
|
|
Date :
2010-03-20 17:12:12 |
By :
muay028 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo $a;
include"config.php"; // ไฟล์ที่เขียนคำสั่งสำหรับติดต่อฐานข้อมูล
$sql="insert into tb values($a)";
mysql_query($sql);
|
|
|
|
|
Date :
2010-03-20 17:35:32 |
By :
iieszz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอคำปรึกษาหน่อยครับ เกี่ยวการส่งค่า echo ไปpost ลงในดาต้าเบส
มีอยู่ว่าผมต้องการค่าล่าสุดจากดาต้าเบสตัวนึง ส่งไปยังอีกตัวนึง ผมมีดาต้าเบส2ตัว ชื่อ datastore และ weather
มีตารางที่เหมือนกัน
มี 4 ฟิวด์ time,temperature,pressure,humidity
ส่งค่าจาก datastore ไปยัง weather มี3หน้าดังนี้ fetch_data.php,index.php,postdb.php
fetch_data.php
------------------------------------------------
<?php
$con=mysql_connect('localhost','root','1234');
mysql_select_db('ubu_weather');
$sql="SELECT *FROM `weather`WHERE`time`=(SELECT max(`time`)FROM `weather`)limit 0,1 ";
$last=mysql_query($sql);
echo mysql_error();
$last_row=mysql_fetch_array($last);
$time =$last_row['time'];
$temperature =$last_row['temperature'];
$pressure =$last_row['pressure'];
$humidity =$last_row['humidity'];
echo "time=$time&temperature=$temperature&pressure=$pressure&humidity=$humidity";
?>
---------------------------------------------
ส่งค่าไปยังหน้า postdb.php โดยควบคุมจากหน้า index.php
index.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></title>
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script type="text/javascript">
var newdata;
$(document).ready(function(){
window.setInterval(fetchdata,1000*60);
});
function senddata(){
//window.location = 'http://www.uburesearch.com/ubu/postdb.php?'+newdata;
$.ajax({
type:'GET' ,
url:'postdb.php' ,
data:newdata,
success:function(v){
$(v).appendTo('#content');
}
});
}
function fetchdata(){
$.ajax({
type:'POST' ,
url:'fetch_data.php' ,
success:function(msg){
newdata = msg;
var pointer = '<span id="pr" style="color:#F00;"> <--</span>'
$('#pr').remove();
$('<p>sent - '+newdata+pointer+'</p>').prependTo('#content');
senddata();
}
});
}
</script>
<style>
#content{
margin:0 auto;
width:900px;
}
</style>
</head>
<div id="content"></div>
<body>
</body>
</html>
---------------------------------------------------------------
โดยมีหน้า postdb.php รับค่าจากหน้า fetch_data.php มาโพสต์ลงดาต้าเบสชื่อ datastore
postdb.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>
<body>
<?php
$time = $_POST['$time'];
$temperature = $_POST['$temperature'];
$pressure = $_POST['$pressure'];
$humidity = $_POST['$pressure'];
$con = mysql_connect('localhost','root','1234');
mysql_select_db('ubu_weather');
$sql ="INSERT INTO `ubu_weather`.`datastore` (`time`,`temperature`, `pressure`, `humidity`) VALUES ('$time', '$temperature', '$pressure', '$humidity')";
$result = mysql_query($sql);
if($result){
echo 'บันทึกข้อมูลสำเร็จ';
}else{
echo 'บันทึกข้อมูลไม่สำเร็จ';
}
?>
</body>
</html>
------------------------------------------------------------------
ขอแก้ไข ตรงปัญหานะคับ
ปัญหาครับ ก็คือ มันแสดงค่า echo แต่มันไม่ส่งค่าไปยังดาต้าเบสชื่อ datastore
มันแสดงข้อความว่า
sent - time=2011-01-17 23:42:53&temperature=5&pressure=5&humidity=5 <--
บันทึกข้อมูลสำเร็จ
แล้วเช็คดูที่ดาต้าเบส
time temperature pressure humidity
0000-00-00 00:00:00 0 0 0
ขอความช่วยเหลือหน่อยนะคับ
ขอบคุณล่วงหน้าคับ
|
|
|
|
|
Date :
2011-01-19 12:06:25 |
By :
nu007 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอแก้ไขบรรทัดที่4นะคับ
ส่งค่าจาก datastore ไปยัง weather มี3หน้าดังนี้ fetch_data.php,index.php,postdb.php
มันสลับกันคับ
|
|
|
|
|
Date :
2011-01-19 12:09:43 |
By :
nu007 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
yukkuk
|
|
|
|
|
Date :
2011-10-23 20:17:43 |
By :
uykkkkk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จิงหรออ
|
|
|
|
|
Date :
2011-10-23 20:18:30 |
By :
oksb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|