Hallo,
Ich habe folgendes Problem:
Ich habe xampp installiiert und will als Startseite auf 'localhost' eine php-Datei erstellen, die nur die Ordner anzeigt.
Alles anzeigen funktioniert,
doch nur die Ordner nicht.
Ich habe es vergeblich mit if-Abfragen probiert, aber ohne erfolg.
Hat jemand einen Vorschlag.
-----------------------------------------------
in C:\xampp\htdocs\ befindet sich :
index.php
.htaccess
404.php
ordner:
mysqltest
tests
index.php :
Ausgabe:
index.php
.htaccess
404.php
ordner:
mysqltest
tests
Ich habe folgendes Problem:
Ich habe xampp installiiert und will als Startseite auf 'localhost' eine php-Datei erstellen, die nur die Ordner anzeigt.
Alles anzeigen funktioniert,
doch nur die Ordner nicht.
Ich habe es vergeblich mit if-Abfragen probiert, aber ohne erfolg.
Hat jemand einen Vorschlag.
-----------------------------------------------
in C:\xampp\htdocs\ befindet sich :
index.php
.htaccess
404.php
ordner:
mysqltest
tests
index.php :
PHP:
<?php
$dir = "/xampp/htdocs/";
$file = scandir($dir);
?>
<body bgcolor="#000000">
<font size="4" face="Arial Black" color="#00FF00">
<ul>
<li> <a href="http://www.google.de/"> <font color="#00FF00"> www.Google.de </font> </a> </li>
<li> <a href="<?php echo $file[0]; ?>"> <font color="#00FF00"><?php echo $file[0]; ?></font> </a> </li>
<li> <a href="<?php echo $file[1]; ?>"> <font color="#00FF00"><?php echo $file[1]; ?></font> </a> </li>
<li> <a href="<?php echo $file[2]; ?>"> <font color="#00FF00"><?php echo $file[2]; ?></font> </a> </li>
<li> <a href="<?php echo $file[3]; ?>"> <font color="#00FF00"><?php echo $file[3]; ?></font> </a> </li>
<li> <a href="<?php echo $file[4]; ?>"> <font color="#00FF00"><?php echo $file[4]; ?></font> </a> </li>
<li> <a href="<?php echo $file[5]; ?>"> <font color="#00FF00"><?php echo $file[5]; ?></font> </a> </li>
<li> <a href="<?php echo $file[6]; ?>"> <font color="#00FF00"><?php echo $file[6]; ?></font> </a> </li>
<li> <a href="<?php echo $file[7]; ?>"> <font color="#00FF00"><?php echo $file[7]; ?></font> </a> </li>
<li> <a href="<?php echo $file[8]; ?>"> <font color="#00FF00"><?php echo $file[8]; ?></font> </a> </li>
<li> <a href="<?php echo $file[9]; ?>"> <font color="#00FF00"><?php echo $file[9]; ?></font> </a> </li>
<li> <a href="<?php echo $file[10]; ?>"> <font color="#00FF00"><?php echo $file[10]; ?></font> </a> </li>
<li> <a href="<?php echo $file[11]; ?>"> <font color="#00FF00"><?php echo $file[11]; ?></font> </a> </li>
<li> <a href="<?php echo $file[12]; ?>"> <font color="#00FF00"><?php echo $file[12]; ?></font> </a> </li>
<li> <a href="<?php echo $file[13]; ?>"> <font color="#00FF00"><?php echo $file[13]; ?></font> </a> </li>
<li> <a href="<?php echo $file[14]; ?>"> <font color="#00FF00"><?php echo $file[14]; ?></font> </a> </li>
<li> <a href="<?php echo $file[15]; ?>"> <font color="#00FF00"><?php echo $file[15]; ?></font> </a> </li>
<li> <a href="<?php echo $file[16]; ?>"> <font color="#00FF00"><?php echo $file[16]; ?></font> </a> </li>
<li> <a href="<?php echo $file[17]; ?>"> <font color="#00FF00"><?php echo $file[17]; ?></font> </a> </li>
<li> <a href="<?php echo $file[18]; ?>"> <font color="#00FF00"><?php echo $file[18]; ?></font> </a> </li>
<li>
</font></ul>
</html>
Ausgabe:
index.php
.htaccess
404.php
ordner:
mysqltest
tests