// Parse error : syntax error, unexpected token “if” in C:\xampp\htdocs\final\vistas\modulos\importar\Eliminar.php on line 7
<?php
// Usamos el comando "unlink" para borrar el fichero
unlink($_GET["name"]);
// Redirigiendo hacia atrás
header("Location: index.php " . $_SERVER["HTTP_REFERER"])
if(!headers_sent())
{ header('Location: index.php');
exit;
}
?>