|
|
|
ช่วยดูโค๊ดหนอยครับว่าผิดตรงไหน ทำไมอัพข้อมูลไม่เข้า mysql |
|
|
|
|
|
|
|
ลองดูข้อมูลด้วยคำสั่ง
Code (PHP)
echo '<pre>', print_r($_GET, true), '</pre>';
เอาไปวางก่อน INSERT นะครับ แล้วจะเห็นว่าข้อมูลมาครบรึเปล่า
|
|
|
|
|
Date :
2013-07-21 16:46:35 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่มาอ่ะครับ กระบี่อยู่ที่ใจ ทำยังไงดีหรอครับ
|
|
|
|
|
Date :
2013-07-21 16:59:19 |
By :
aibot |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
include("../login.inc.php") ;
?>
<html>
<head>
<title>test</title>
</head>
<body>
<form action="test.php" method="post" name="frmMain" id="frmMain">
<table width="599" border="1">
<tr>
<th>test
<input name="c_data" type="text" id="c_data">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?
if($_POST["c_data"] != "")
{
$strSQL = "INSERT INTO chat ";
$strSQL .="(c_data,c_mem) ";
$strSQL .="VALUES ";
$strSQL .="('".$_GET["c_data"]."','".$id."') ";
$objQuery = mysql_query($strSQL);
}
?>
</table>
</body>
</html>
|
|
|
|
|
Date :
2013-07-21 17:02:47 |
By :
prach_kp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
include("../login.inc.php") ;
?>
<html>
<head>
<title>test</title>
</head>
<body>
<form action="test.php?Action=chat" method="post" name="frmMain" id="frmMain">
<table width="599" border="1">
<tr>
<th>test
<input name="c_data" type="text" id="c_data" value="">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?
if($_GET["Action"] == "chat")
{
$c_data = $_POST[c_data] ;
$strSQL = "INSERT INTO chat ";
$strSQL .="(c_data,c_mem) ";
$strSQL .="VALUES ";
$strSQL .="('".$c_data."','".$id."') ";
$objQuery = mysql_query($strSQL);
}
?>
</table>
</body>
</html>
ได้ละครับขอบคุณครับ
|
|
|
|
|
Date :
2013-07-21 17:04:53 |
By :
aibot |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไป
|
|
|
|
|
Date :
2013-07-21 23:51:58 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|