ขอถามหน่อยครับงงกับที่เป็นเลยครับ เป็นภาษาอักฤษเกิดแบบนี้ครับงงเลย Table 'test.wed' doesn't exist
เป็นภาษาอักฤษเกิดแบบนี้ครับงงเลย Table 'test.wed' doesn't exist
ใส่ข้อมูลภาษาไทยเป็นแบบนี้ครับ You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ธเธเธเธเธเธเธเธเธ, เธเธเธเธเธเธเธเธเธเธเธ)' at line 1
โค็ตนะครับ
Code (PHP)
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_bpcc = "localhost";
$database_bpcc = "test";
$username_bpcc = "root";
$password_bpcc = "123456";
$bpcc = mysql_pconnect($hostname_bpcc,$username_bpcc,$password_bpcc) or
trigger_error(mysql_error(),E_USER_ERROR);
?>
<?php
function GetSQLValueString($theValue,$theType,$theDefinedValue="",$theNotDefinedValue="")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
switch ($theType){
case "long":
$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;
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])){
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO wed (name,address) VALUES (%s, %s)",
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"));
mysql_select_db($database_bpcc, $bpcc);
$Result1 = mysql_query($insertSQL, $bpcc) or die (mysql_error());
if($Result1){
echo "สมัครสมาชิกเรียบร้อยแล้วกรุณา LOGIN เพื่อเข้าสู่ระบบ" ;
}
else
{
echo "ไม่สามารถสมัครสมาชิกได้";
}
}
?>
<!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>
<style type="text/css">
<!--
.style4 {
font-family:"Microsoft Sans Serif";
font-size:16px;
font-weight:bold;
}
.style9{
font-size:14px;
font-family:"Microsoft Sans Serif";
font-weight:bold;
}
.style14{
font-size:14px;
font-family:"Microsoft Sans Serif";
}
</style>
</head>
<body>
<span class="style14"><br />ข้อมูลเว็บไซต์</span><br />
<form action="<?php echo $editFormAction; ?>" method="post" enctype="multipart/form-data"
name="fom1" id="fom1">
<table width="430" border="0">
<tr>
<td width="119"><span class="style9">name</span></td>
<td width="301"><span class="style14">
<label>
<input name="name" type="text" id="name" size="20" maxlength="50" />
</label>
</span></td>
<tr>
<td width="119"><span class="style9">address</span></td>
<td width="301"><span class="style14">
<label>
<input name="address" type="text" id="address" size="30" maxlength="50" />
</label>
</span></td>
</tr>
</table>
<br />
<label>
<input type="submit" name="Sumbmit" value="เพิ่มข้อมูล"/>
</label>
<input type="submit" name="Sumbmit" value="ยกเลิก"/>
</label>
<input type="hidden" name="MM_insert" value="form1" />
</form>
</body>
</html>
ช่วยหน่อยครับงงมากๆๆTag : - - - -
Date :
2009-12-28 18:00:27
By :
topdkclub02
View :
1234
Reply :
5
ยังไม่มีตาราง wed ใน ฐานข้อมุลชื่อ test
ก็สร้างมันขึ้นมาครับ หรือถ้าสร้างแล้วก็ระบุชื่อฐานข้อมุลให้ถูกครับ ว่า ตารางนี่มันอยู่ฐานข้อมูลชื่ออะไรแน่
Date :
2009-12-28 18:19:44
By :
lozomac
ลองทำตามก็เกิด
เกิดนี้มาอีกละครับ Unknown column 'a' in 'field list'
Date :
2009-12-28 18:31:50
By :
topdkclub02
Unknown column 'a' in 'field list' ไม่มีคอลัมน์ เอ
Date :
2009-12-28 21:50:48
By :
ปป
เอาอันนี้ไปแทนของเดิม
Code (PHP)
function GetSQLValueString($theValue,$theType,$theDefinedValue="",$theNotDefinedValue="")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $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;
}
Date :
2009-12-29 00:22:38
By :
lozomac
ขอบคุณได้ละครับ ^^
Date :
2009-12-29 10:02:12
By :
topdkclub02
Load balance : Server 02