|
|
|
json_encode, decode จาก mysql ออกมาแล้วมีตัวเลขออกมาด้วย จะเอาออกยังไงอ่ะครับ |
|
|
|
|
|
|
|
แบบว่าไม่เอาตัวเลขนี้อ่ะครับ มันติดมาด้วย
test.php
define('URL_Conn_Function', 'conn_function.php');
function RequestDataJsonReturn($type,$table){
try{
$DataToSend = "type=".$type."&table=".$table;
$ctx = stream_context_create(array('http' => array('method' => 'POST','header' => 'Content-Type: application/x-www-form-urlencoded','content' => $DataToSend,)));
$response = file_get_contents(URL_Conn_Function,false,$ctx);
return $response;
// return $DataToSend;
}catch(Exception $ex){
return false;
}
return false;
}
echo $strJsonData = RequestDataJsonReturn('RequestData','booking'); //type,table
conn_function.php
include ('connect.php');
function select_returnjson($table,$option){
$query = "SELECT * FROM $table"." ".$option;
$rows = array();
$result = mysql_query($query) or die(mysql_error());
if ($result){
while($row = mysql_fetch_array($result))
$rows[] = $row;
}
mysql_free_result($result);
header('Content-type: application/json');
return json_encode($rows);
return $result;
mysql_close($conn);
}
if ($type == "RequestData" && $table== "booking"){
print select_returnjson($preload,'order by bkdate desc');
exit();
}
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2015-03-20 21:49:17 2015-03-20 21:50:31 2015-03-20 21:51:02 2015-03-20 22:39:02
|
|
|
|
|
Date :
2015-03-20 21:44:56 |
By :
jpong7 |
View :
925 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง fetch_assoc
|
|
|
|
|
Date :
2015-03-20 21:50:38 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่รู้เป็นไง ชอบใช้กันจัง fetch_array ทั้งๆ ที่ ไม่ได้ คีย์ลำดับที่ในการเรียง แต่ใช้ คีย์ชื่อ เป็นตัวเลข
เปลือง เมมฯ ก็เปลือง ตัวแปรออกมา 2 ชุด อยากจะโทษอาจารย์ที่สอนจริงๆ (หรือว่าอาจารย์ที่สอนจะไม่รู้)
เห็นมะ ลูกศิษย์ทำผิดโทษถึงอาจารย์ ไม่อยากให้ใครว่าอาจารย์ก็ใส่ใจหน่อยนะครับ
|
|
|
|
|
Date :
2015-03-21 03:24:13 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|