@Wotan
nein, bin ich nicht, aber was soll ich dazu noch sagen? *traurig*
nein, bin ich nicht, aber was soll ich dazu noch sagen? *traurig*
<html>
<head>
<title>Projekt löschen</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
echo "$DOKUMENT_ROOT";
$data = "../wohnungen/proj01";
$handle = opendir("$data/");
while ($file = readdir ($handle)) {
unlink($file);
}
rmdir ("$data");
?>
</body>
</html>
<html>
<head>
<title>Projekt löschen</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
$data = "../wohnungen/proj01/";
$handle = opendir("$data");
while ($file = readdir ($handle)) {
if ($file != "." && $file != "..") {
$DelFile = $data . $file;
unlink($DelFile);
}
}
?>
</body>
</html>
<html>
<head>
<title>Projekt löschen</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
$data = "../wohnungen/proj01/";
$handle = opendir("$data");
while ($file = readdir ($handle)) {
if ($file != "." && $file != "..") {
$DelFile = $data . $file;
@unlink($DelFile);
}
}
?>
</body>
</html>
Kommentar