ใช้ด้วยครับ database เองช้วยดู code ให้ที่ครับ ตือdatabase มันลบตัวเอง
คือใช้งานทำการอับได้ บันทึกได้ แสดงผลได้ แต่ข้อมูลอยู่ๆมันลบไปเองไม่ทราบว่าจะแก่ไง ใช้ที่จนปัญญา จริงๆ
หน้าที่ใช้บันทึก
<?
$photo=$_FILES['photo']['tmp_name'];
$photo_name=$_FILES['photo']['name'];
$photo_size=$_FILES['photo']['size'];
$photo_type=$_FILES['photo']['type'];
$detail=$_POST['detail'];
$id_title=$_POST['id_title'];
if (!$photo) {
echo "<h3>ERROR : ไม่สามารถ Upload ได้</h3>";
exit();
}
$ext=strtolower(end(explode('.',$photo_name)));
if ($ext == "jpg" || $ext == "jpeg" || $ext =="png" || $ext=="gif") {
include "connect.php";
$sql="insert into tb_photo values(null,'','$detail','$id_title')";
mysql_db_query($dbname,$sql) or die ("failed with error message: \"" . mysql_error () . '"');
$sql="select max(id_photo) from tb_photo";
$result=mysql_db_query($dbname,$sql) or die ("failed with error message: \"" . mysql_error () . '"');
$r=mysql_fetch_array($result);
$id_max=$r[0];
$filename=$id_max.".".$ext;
copy($photo,'im_large/$filename');
if ($ext =="jpg" or $ext =="jpeg") {
$ori_img = imagecreatefromjpeg($photo);
} else if ($ext =="png") {
$ori_img = imagecreatefrompng($photo);
} else if ($ext =="gif") {
$ori_img = imagecreatefromgif($photo);
}
$ori_size = getimagesize($photo);
$ori_w = $ori_size[0];
$ori_h = $ori_size[1];
if ($ori_w>=$ori_h) {
$new_w = 100;
$new_h = round(($new_w/$ori_w) * $ori_h);
} else {
$new_h =100;
$new_w = round(($new_h/$ori_h) * $ori_w);
}
$new_img= imagecreatetruecolor($new_w, $new_h);
imagecopyresized( $new_img, $ori_img,0,0,0,0,$new_w, $new_h,$ori_w,$ori_h);
if ($ext =="jpg" or $ext =="jpeg") {
imagejpeg($new_img,"im_small/$filename");
} else if ($ext =="png") {
imagepng($new_img,"im_small/$filename");
} else if ($ext =="gif") {
imagegif($new_img,"im_small/$filename");
}
imagedestroy($ori_img);
imagedestroy($new_img);
$sql="update tb_photo set name_photo='$filename' where id_photo='$id_max' ";
mysql_db_query($dbname,$sql) or die ("failed with error message: \"" . mysql_error () . '"');
mysql_query("set NAMES tis620");
echo "<H3><center>Upload OK</center></H3>";
echo "<A HREF='admin.php?id_title=$id_title'> BACK PAGE </A>";
mysql_close();
} else {
echo "<h3>ERROR </h3>";
}
?>
หน้าของการแสดง
<?
include "connect.php";
$no=0;
$sql="select * from tb_photo order by id_photo";
$result=mysql_db_query($dbname,$sql)or die ("failed with error message: \"" . mysql_error () . '"');
$num=mysql_num_rows($result);
if($num>0) {
$new_text =($detail_photo);
echo "
<TABLE width='600' border='0' align='center' cellpadding='0' cellspacing='0' >
<TR BGCOLOR><TD><B> </B></TD></TR></table>";
while ($r=mysql_fetch_array($result)) {
$id_photo=$r[id_photo];
$name_photo=$r[name_photo];
$detail_photo=$r[detail_photo];
$no++;
$new_text =$detail_photo;
print "
<table width=200 border='0' align='center' cellpadding='0' cellspacing='0'>
<TR>
<TD>
<th width=400> <A HREF='im_large/$name_photo' TARGET='_blank'>
<IMG SRC='im_small/$name_photo' BORDER=0></A>
<br>$new_text</br></TD>
</th>
<th width=200><TD>
<left><A HREF='admin_del.php?id_del=$id_photo&id_title=$id_title&name_del=$name_photo'
onclick=\"return confirm('คุณแน่ใจที่จะลบรูป $name_photo ออกจากระบบ?')\"></left> ลบ </A>
</TD></th> </TR>
</table>
";
}
}
?>
database
โครงสร้างตาราง `tb_photo`
--
CREATE TABLE `tb_photo` (
`id_photo` int(11) NOT NULL AUTO_INCREMENT,
`name_photo` varchar(30) NOT NULL,
`detail_photo` text NOT NULL,
`ref_title` int(11) NOT NULL,
PRIMARY KEY (`id_photo`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ;
โครงสร้างตาราง `tb_title`
--
CREATE TABLE `tb_title` (
`id_title` int(11) NOT NULL AUTO_INCREMENT,
`name_title` varchar(60) NOT NULL,
PRIMARY KEY (`id_title`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;Tag : PHP
Date :
2011-05-02 17:25:04
By :
light311
View :
883
Reply :
4
หน้าลบข้อมูล
<?
include "connect.php";
$id_del=$_GET['id_del'];
$id_title=$_GET['id_title'];
$name_del=$_GET['name_del'];
$sql="delete from tb_photo where id_photo=$id_del";
mysql_db_query($dbname,$sql);
if (file_exists("im_large/$name_del")){
unlink("im_large/$name_del");
}
if (file_exists("im_small/$name_del")){
unlink("im_small/$name_del");
}
echo "<H3>ได้ทำการลบข้อมูลเรียบร้อยแล้ว</H3>";
print "<meta http-equiv=refresh content='0;URL=admin.php'>";
echo "<A HREF='admin.php?id_title=$id_title'></A>";
mysql_close();
?>
Date :
2011-05-02 17:30:15
By :
light311
มันจะลบเองได้ไงครับ ถ้าไม่มีการ Redirect ไปที่ admin_del.php
Date :
2011-05-02 19:05:17
By :
PlaKriM
เห็นด้วยผมไม่เข้าใจว่ามันเป็นอย่างงันได้ไง
ผมทดสอบบันทึก12.00 มาดูอีกที่ อีกวันในเวลา 14.30 ยังอยู่ พอดูอีกที่ 16.30 มันลบเองเลยไม่เข้าใจว่ามันลบเองได้ไง
Date :
2011-05-02 21:54:04
By :
light311
พอจะมีโค๊ด ที่บันทึกรูปและข้อความ ลงในฐานข้อมูล และลบ กับ แก้ไขไม่ครับ อยากได้โค็ดใหม่แต่ขอ php นะครับ ไม่เข้าใจมันว่ามันลบได้ไง
Date :
2011-05-02 21:59:12
By :
light311
Load balance : Server 04