le 17/01/2013 à 19:05
pb pour supprimer un fichier.
Page index.php
<?php
$i=1;
$handle = opendir("images/");
while ( $file = readdir($handle) ){if($file!='.' && $file!='..' && $file!='efface.php' && $file!='index.php')
{
$tablo[$i] = $file;$i++;
}
}
closedir($handle);
$tablo[0]=$i-1;
sort($tablo);
$y=0; while ($y<$i-1) {
echo '<a href="efface.php?file='.$tablo[$y].'">'.$tablo[$y].'</a><br><br>';$y++;};
?>
Page efface.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans titre</title>
</head>
<?php
$adresse = "images/"; //Adresse du dossier.
if(isset($_GET['file'])) //Si $_GET['nom'] existe, on supprime le fichier...
{
if ($file != "." && $file != "..")
{
$nom=''.$adresse.$_GET['file'].'';
unlink($nom);
echo 'Le fichier "'.$_GET['file'].'" a été éffacé !<br>';
}
}
?>
<body>
</body>
</html>
Créer un dossier images
Cela marche!!!
MERCI
<?php
$i=1;
$handle = opendir("images/");
while ( $file = readdir($handle) ){if($file!='.' && $file!='..' && $file!='efface.php' && $file!='index.php')
{
$tablo[$i] = $file;$i++;
}
}
closedir($handle);
$tablo[0]=$i-1;
sort($tablo);
$y=0; while ($y<$i-1) {
echo '<a href="efface.php?file='.$tablo[$y].'">'.$tablo[$y].'</a><br><br>';$y++;};
?>
Page efface.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans titre</title>
</head>
<?php
$adresse = "images/"; //Adresse du dossier.
if(isset($_GET['file'])) //Si $_GET['nom'] existe, on supprime le fichier...
{
if ($file != "." && $file != "..")
{
$nom=''.$adresse.$_GET['file'].'';
unlink($nom);
echo 'Le fichier "'.$_GET['file'].'" a été éffacé !<br>';
}
}
?>
<body>
</body>
</html>
Créer un dossier images
Cela marche!!!
MERCI