|
|
|
ปกติอัพข้อมูลได้ พอเพื่มฟิลด์ชื่อ pageview ใน tb_clip เพื่อเก็บจำนวนคนเข้าดู พออัพเดทแล้วมัน error ครับ |
|
|
|
|
|
|
|
ใส่ insert php code ด้วยครับ
Code (PHP)
<?
include'config.inc.php';
?>
<!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">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<table width="753" border="0">
<tr>
<td width="747" height="199" valign="top"><table width="100%" border="0">
<tr>
<td> </td>
</tr>
<tr>
<td>
<form id="form1" name="form1" method="post" action="add_clip.php" enctype="multipart/form-data">
<table width="100%" border="0">
<tr>
<td width="22%">หัวข้อ</td>
<td width="78%"><input name="name" type="text" id="name" size="50" /></td>
</tr>
<tr>
<td>รายละเอียดย่อย</td>
<td><textarea name="sub_name" cols="50" id="sub_name"></textarea></td>
</tr>
<tr>
<td>หมวดหมู่</td>
<td><select name="cn" class="txtbox" id="cn">
<option>---------Select---------</option>
<?php
$sqlp="select * from tb_cateclip ORDER BY cate_id ASC";
$resultp=mysql_query($sqlp);
while($datap=mysql_fetch_array($resultp)){
echo"<option value=$datap[cate_id]>$datap[cate]</option>";
}
?>
</select></td>
</tr>
<tr>
<td>รูปภาพ</td>
<td><input name="fileupload" type="file" id="fileupload" /></td>
</tr>
<tr>
<td rowspan="2">โค้ด clip vdo </td>
<td><textarea name="info" cols="80" rows="20" id="info" ></textarea></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="เพิ่มข้อมูล" /></td>
</tr>
<tr>
<td> </td>
<td><span class="txtbox">
<? if(isset($_POST[Submit])){
$fileupload=$_FILES['fileupload'] ['tmp_name']; //ส่วนของไฟล์รูปภาพ
$fileupload_name=$_FILES['fileupload'] ['name'];
$fileupload_size=$_FILES['fileupload'] ['size'];
$fileupload_type=$_FILES['fileupload'] ['type'];
$sql="insert into tb_clip values(NULL,'$_POST[name]','$_POST[sub_name]',$_POST[cn],'$_POST[info]','')";
mysql_query($sql) or die("เกิดข้อผิดพลาด");
if ($fileupload) {
$array_last=explode (".", $fileupload_name);
$c=count ($array_last) -1 ;
$lastname=strtolower ($array_last [$c]);
if ($lastname=="gif" or $lastname=="jpg" or $lastname=="jpeg") { //เช็คไฟล์รูปภาพว่าเป็นไฟล์ gif, jpg, jpeg หรือไม่ ถ้าใชจะทำการติดต่อฐานข้อมูล
$sql101="select max(n_id) from tb_clip ";
$result101=mysql_query($sql101);
$row = mysql_fetch_row($result101);
$photonamet=$row[0] .".".$lastname ;
copy($fileupload, "../images/clips/" .$photonamet);
$sql102="update tb_clip set n_image ='$photonamet'
where n_id= '$row[0] ' ";
$result102 = mysql_query($sql102) or die ("เพิ่มไม่ได้2"); // update รูปภาพเข้าฐานข้อมูลโดยอ้างอิงถึงข้อมูลการสมัครครั้งล่าสุด
$sql102="update tb_clip set n_image ='$photonamet'
where n_id= '$row[0] ' ";
$result102 = mysql_query($sql102) or die ("เพิ่มไม่ได้2");
}
}
echo" บันทึกข้อมูลเรียบร้อยแล้ว";
echo"<meta http-equiv=refresh content=1;url=clips_travel.php>";
} ?>
</span></td>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td> </td>
</tr>
</table></td>
</tr>
</table>
|
|
|
|
|
Date :
2013-02-10 14:23:00 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณตั้งค่า pageviews เป็น Primary Key อัพเดทไปก็ error สิครับ ใช้ ฟิวด์อื่นเป็น primary แทนครับ
|
|
|
|
|
Date :
2013-02-10 14:23:35 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา Primary ในส่วนของ pageview ออกครับ
|
|
|
|
|
Date :
2013-02-10 14:24:33 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ออกอย่างไรครับ
|
|
|
|
|
Date :
2013-02-10 15:20:32 |
By :
youfishing |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จากรูปที่เอามาโพสท์ คลิกรูป กุญแจ ในฟิวด์ที่ต้องการทำ primary key
แล้วก็คลิก primary key ของ pageview ออก
|
|
|
|
|
Date :
2013-02-10 17:02:52 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วขอบคุณมากครับ
$sql="insert into tb_clip
values(NULL,'$_POST[name]','$_POST[sub_name]',$_POST[cn],'$_POST[info]',',','')"; <<ใส่เพื่มเข้าไป
|
ประวัติการแก้ไข 2013-02-11 16:15:53 2013-02-11 16:17:04 2013-02-11 16:18:34
|
|
|
|
Date :
2013-02-11 16:15:05 |
By :
youfishing |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|