954,587 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Image uploading - delete not work

I make an image administrator with PHP / MYSQL / AJAX. I try upload image - success! After uploading image I refresh page. uploaded image has added to list. I press delete button - image removes from list. But why it doesn`t remove from mysql list???

File can be downloaded here: http://www.avanti.lv/upload_image.zip

mcwebalizer
Newbie Poster
9 posts since Jul 2011
Reputation Points: 10
Solved Threads: 0
 

Don't do download coade link. This is why nobody's bothered to answer you. Post your code.

diafol
Rhod Gilbert Fan (ardav)
Moderator
7,792 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080
 

You delete the file from the MySQL Database, but you don't delete it on the local filesystem. Use unlink("files/$filename"); to delete it.

cuonic
Junior Poster in Training
56 posts since Mar 2011
Reputation Points: 16
Solved Threads: 9
 

maybe it was just deleted on your gallery(assumed) list table, but not in your main image(assumed) table, try creating another database query to delete it you're main table, and if your you want to delete the image file from your folder, thin use unlink

vaultdweller123
Posting Pro
554 posts since Sep 2009
Reputation Points: 42
Solved Threads: 75
 

in index.php you written URL in capital letter just change it into small cap..ur problem will solve.

Your code:URL:"delete.php",


Change
:

$.ajax({
type: "POST",
url:"delete.php",

data: string,
cache: false,
success: function(){
upldimages.fadeOut('slow', function() {$(this).remove();});
}

swapy
Newbie Poster
1 post since Jan 2012
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: