|
|
|
รบกวนด้วยครับ บันทึกข้อมูลลงฐานข้อมูลไม่ได้ ไม่รู้ว่าเขียนผิดตรงไหนครับ |
|
|
|
|
|
|
|
ตอนแรกก็ บันทึกได้ครับ แต่แก้ไปแก้มา บันทึกไมไ่ด้เลย
หน้ากรอกข้อมูล
Code (PHP)
<html>
<head>
<title>เพิ่มข้อมูล IP Camera</title>
</head>
<body bgcolor=#FFCC66 >
<center><img src="xampp\img\3BB_logo.gif " height= 180 width= 600 hspace=150 border =1 > </center>
<form action="webcamaddsave.php" name="frmAdd" method="post" enctype="multipart/form-data">
<center>
<table width="450 border="1">
<tr > <center> <table border =2 ></center>
<th width="91"> <div align="center">ลำดับที่</div></th>
<th width="140"> <div align="center">สถานที่</div></th>
<th width="140"> <div align="center">IP กล้อง</div></th>
<th width="208"> <div align="center">รหัสเข้าใช้</div></th>
</tr>
<tr>
<td><input type="text" name="1" size="2"></div></td>
<td><input type="text" name="2" size="20"></td>
<td><input type="text" name="3" size="20"></td>
<td><p>
<input type="text" name="4" size="12">
</div>
<textarea name="5" cols="30" rows="3" wrap="off"></textarea>
</p>
<p>
<input type="file" name="filUpload">
</p></td>
</tr>
</table>
<center><input type="submit" name="submit" value="ยืนยัน"></center>
</form>
</body>
</html>
หน้าบันทึก
Code (PHP)
<html>
<head>
<title></title>
</head>
<body bgcolor=#FFCC66 >
<center>
<?php
if(move_uploaded_file($_FILES["filUpload"]["tmp_name"],"myfile/".$_FILES["filUpload"]["name"]))
{
echo "Copy/Upload Complete<br>";
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("dbcam");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
$strSQL = "INSERT INTO dbcamera ";
$strSQL .="(Camera_ID,Camera_Position,Camera_IP,Camera_User_Pass,area,pic)";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["1"]."','".$_POST["2"]."','".$_POST["3"]."','".$_POST["4"]."','".$_POST["5"]."','".$_FILES["filUpload"]["name"]."')";
if($objQuery)
{
echo "<META HTTP-EQUIV=\"Refresh\" CONTENT=\"0;URL=testmulti.php\">";
}
else
{
echo "ผิดพลาด ข้อมูลไม่ถูกต้อง หรือ มีรายละเอียดซ้ำกัน";
}
mysql_close($objConnect);
}
?>
</center>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-01-23 15:00:17 |
By :
puldool |
View :
806 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2013-01-23 15:13:28 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวแปร ผมว่าเป็น txt ดีกว่านะครับ อย่างเป็นตัวเลขเลย เดี๋ยมีปัญหาภายหลัง
|
|
|
|
|
Date :
2013-01-23 15:29:25 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|