Hi,
I have file uploading system which saves file and some info about it:
so I have file saved in uploads/ and also I have $filenamePHP Code:$target_path = "uploads/"; // directory CHMODed to 777.
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path);
$filename = basename($_FILES['uploadedfile']['name']);
how I can delete file and all the row in mysql by pushing one button???
If you need more info -askthanks
![]()



thanks
Reply With Quote


Bookmarks