Question : Ajax Image Upload Delete Image function not Working

OK I downloaded a nice script that works for the uploading part, however, the function to remove an image does not work. I've attached the files. Also when a file is uploaded I'm inserting in to a holding table in a DB (in the upload.php file)

// Ad to holding table in DB in the upload.php file
mysql_query("INSERT INTO holding VALUES('', '".$_SESSION['profileID']."', '".$oname."', '".date("m-d-Y")."')");
// Ad to holding table in DB

Here is the authors comments. The function doesn't work on his site either
http://www.phpasks.com/ajax/upload-image-ajax.html

I also want to be able to show the results from the table if the page is refreshed...Let me know.
 
index file with the form
 
 
resize and show thumbnail
 
 
uploads and shows imag progress
 

Answer : Ajax Image Upload Delete Image function not Working

hi check the code i attached

even the cast function doesnt work with access,

now the code below i tried and it worked with access
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
<%
Dim RSForside
Dim RSForside_numRows 
Set RSForside = Server.CreateObject("ADODB.Recordset")
RSForside.ActiveConnection = MM_ConnNews_STRING
RSForside.Source = "SELECT DatePart('d',[eventdate]) AS Day ,  DatePart('m',[eventdate]) AS month ,  DatePart('yyyy',[eventdate]) AS Year
FROM tblmenu;"
RSForside.CursorType = 0
RSForside.CursorLocation = 2
RSForside.LockType = 1
RSForside.Open() 
RSForside_numRows = 0
%> 
Random Solutions  
 
programming4us programming4us