Кажется, я не могу понять, чего мне не хватает, не могли бы вы помочь мне?
<?php
// I save the file sources from the URL what was sent by AJAX to these variables.
$file = $_GET['file'];
function deleteFiles($id){
// If is a file then delete the file.
if(is_file($id)){
return unlink($id);
// Else show error.
} else {
echo $id . " is not a file, or there is a problem with it.<br />" ;
}
}
if(isset($file)){
deleteFiles($file);
}
?>
Кажется, что функция onClick не вызывает delete.php, что-то мне не хватает, но я не вижу, что.