|
|
|
ข่วยดูให้หน่อยคับ เพิ่มข้อมูลไม่ได้คับ มันแสดง Error Save |
|
|
|
|
|
|
|
///////index1.php/////////
<HTML>
<HEAD></HEAD>
<BODY>
<form action="add.php" method="POST" >
ª×èÍä¿Åì<INPUT TYPE="text"NAME="File_Name"><br>
ä¿Åì<INPUT TYPE="text"NAME="Files"><br>
ªØÁÊÒÂ<INPUT TYPE="text"NAME="Exchanges"><br>
Çѹ/à´Ô͹/»Õ<INPUT TYPE="text"NAME="Dates"><br>
àÇÅÒ<INPUT TYPE="text"NAME="Times"><br>
ÍèÒ¹ä¿Åì<INPUT TYPE="text"NAME="Read_File"><br>
Download<INPUT TYPE="text"NAME="Download"><br>
<INPUT TYPE="submit" value="Save">
</form>
</BODY>
</HTML>
......................................................
////////add.php//////////
<?
include("connect.php");
$File_Name= $_POST[File_Name];
$File= $_POST[Files];
$Exchanges= $_POST[Exchanges];
$Date= $_POST[Dates];
$Time= $_POST[Times];
$Read_File= $_POST[Read_File];
$Download= $_POST[Download];
if($File_Name=="" ||$File=="" ||$Exchanges=="" ||$Date="" ||$Time=="" ||$Read_File=="" ||$Download=="")
{
echo "¢éÍÁÙÅÂѧäÁè¤Ãº";
}else{
$strsql="insert into datas values ('','$File_Name','$File','$Exchanges','$Date','$Time','$Read_File','$Download')";
$result=mysql_query($strsql);
if($result)
{
echo " <META HTTP-EQUIV='refresh' content='3;URL=index.php'>";
echo "Save Done";
}
else
{
echo "Error Save";
}
}
?>
...................................................
////////////connect.php//////////
<?
$host = "localhost";
$username = "root";
$password = "";
$link = mysql_connect($host, $username, $password);
$db_name = "tot_project";
mysql_select_db($db_name, $link);
mysql_query("Set NAMEs tis620");
?>
Tag : PHP
|
|
|
|
|
|
Date :
2011-03-21 15:42:14 |
By :
Tigerpol |
View :
768 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$result=mysql_query($strsql) or die(mysql_error()); // บรรทัดนี้ เพิ่ม or die(mysql_errorr()) ด้วยครับ
แล้วเอา error ที่แสดงมา post ไว้ด้วยนะครับจะได้ช่วยกันได้ครับ
|
|
|
|
|
Date :
2011-03-21 15:50:48 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันขึ้นแบบนี้อ่าคับ Column count doesn't match value count at row 1
|
|
|
|
|
Date :
2011-03-21 15:55:56 |
By :
Tigerpol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา ฟิล์ของ ตารางข้อมูลมาดูหน่อยครับ ว่ามีอะไรบ้าง
เพราะว่ามันฟ้องว่า ฟิลที่ต้องการเพิ่มข้อมูลกับที่มีอยู่ในตารางไม่ตรงครับ
|
|
|
|
|
Date :
2011-03-21 16:12:44 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มข้อมูลได้แล้วคับ พอดีผมไปเพิ่มฟิวในตาราง แล้วไปลบฟิวที่เกินมา ก็เซฟได้แล้ว
ขอบคุณมากคับที่ช่วยดูให้
|
|
|
|
|
Date :
2011-03-21 16:14:14 |
By :
Tigerpol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หรือลองเข้าไปศึกษาตัวอย่างการเพิ่มข้อมูลในบทความข้างล่างนี้ครับ
phpMySQLAddForm.php
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form action="phpMySQLAddSave.php" name="frmAdd" method="post">
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="160"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="70"> <div align="center">Budget </div></th>
<th width="70"> <div align="center">Used </div></th>
</tr>
<tr>
<td><div align="center"><input type="text" name="txtCustomerID" size="5"></div></td>
<td><input type="text" name="txtName" size="20"></td>
<td><input type="text" name="txtEmail" size="20"></td>
<td><div align="center"><input type="text" name="txtCountryCode" size="2"></div></td>
<td align="right"><input type="text" name="txtBudget" size="5"></td>
<td align="right"><input type="text" name="txtUsed" size="5"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
phpMySQLAddSave.php
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "INSERT INTO customer ";
$strSQL .="(CustomerID,Name,Email,CountryCode,Budget,Used) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtCustomerID"]."','".$_POST["txtName"]."','".$_POST["txtEmail"]."' ";
$strSQL .=",'".$_POST["txtCountryCode"]."','".$_POST["txtBudget"]."','".$_POST["txtUsed"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
</body>
</html>
ref : PHP MySQL Add/Insert Record ตัวอย่างนี้จะเป็นการเขียนโปรแกรม PHP กับ MySQL เพื่อเพิ่มข้อมูลลงใน Table
|
|
|
|
|
Date :
2011-03-21 16:16:26 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่อครับ....
|
|
|
|
|
Date :
2011-03-21 16:16:53 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|