|
|
|
เพิ่มข้อมูลลงฐาน DB เรื่องง่ายๆ ที่ทำบ่อยๆ แต่อะไรไม่รุบังตา ช่วยหน่อยนะคะ |
|
|
|
|
|
|
|
webdataform.php
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style1 {
font-size: x-large;
font-weight: bold;
}
-->
</style>
</head>
<body>
<form action="savedatawebform.php" method="post" name="form1" class="style1" id="form1">
<p>Title</p>
<p>
<label>
<textarea name="title" id="title"></textarea>
</label>
</p>
<p>Description</p>
<p>
<label>
<textarea name="descrip" id="descrip"></textarea>
</label>
</p>
<p>Key</p>
<p>
<label>
<textarea name="key" id="key"></textarea>
</label>
</p>
<p>Languages</p>
<p>
<label>
<textarea name="languages" id="languages"></textarea>
</label>
</p>
<p>Contact</p>
<p>
<label>
<textarea name="contact" id="contact"></textarea>
</label>
</p>
<p>Retaed Domains</p>
<p>
<label>
<textarea name="retaeddomains" id="retaeddomains"></textarea>
</label>
</p>
<p> </p>
<p>
<label>
<input type="submit" name="savedata" id="savedata" value="Save" />
</label>
<label>
<input type="reset" name="canceldata" id="canceldata" value="Cancel" />
</label>
</p>
<p>
<label></label>
</p>
</form>
</body>
</html>
webdataform.php
<?php
include("./config/config.php");
$title = $_POST['title'];
$description = $_POST['descrip'];
$key = $_POST['key'];
$languages = $_POST['languages'];
$contact = $_POST['contact'];
$retaeddomains = $_POST['retaeddomains'];
$strSQL = "INSERT INTO webdata ";
$strSQL .="(title,descrip,key,languages,contact,retaeddomain) ";
$strSQL .="VALUES";
$strSQL .="('".$_POST["title"]."','".$_POST["descrip"]."','".$_POST["key"]."' ";
$strSQL .=",'".$_POST["languages"]."','".$_POST["contact"]."','".$_POST["retaeddomains"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
?>
Tag : PHP
|
|
|
|
|
|
Date :
2011-06-30 15:49:13 |
By :
Poster |
View :
795 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผิดเพราะ ใช่คำสงวน key
เสียเวลามาก
|
|
|
|
|
Date :
2011-06-30 16:15:11 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$title = $_POST['title'];
$description = $_POST['descrip'];
$key = $_POST['key'];
$languages = $_POST['languages'];
$contact = $_POST['contact'];
$retaeddomains = $_POST['retaeddomains'];
$strSQL = mysql_query("INSERT INTO webdata (title,descrip,key,languages,contact,retaeddomain)values('$title','$description','$key','$languages','$contact','$retaeddomains')");
|
ประวัติการแก้ไข 2011-06-30 16:16:30
|
|
|
|
Date :
2011-06-30 16:16:07 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุนมากคะ mangkunzo
เพราะำว่า key ใช้กับฐานข้อมุลไม่ได้ นัี่งดุตั้งนาน อิอิ 555+
|
|
|
|
|
Date :
2011-06-30 17:27:21 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเป็นคำสงวนสามารถใช้ได้แต่จะต้องใส่ `wording` ให้ด้วยครับ
Go to : SQL MYSQL RESERVED WORDS
|
|
|
|
|
Date :
2011-06-30 22:25:49 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|