1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | <?php defined ( 'main' ) or die ( 'no direct access' ); $title = $allgAr [ 'title' ]. ' :: Pflegeanleitungen' ; $design = new design ( $title , $hmenu ); $design ->header(); // Einstellungen $pfad = "include/downs/downloads/pdf/" ; // ---- ?> <h1>Pflegeanleitungen für Ihren Boden</h1> <table cellpadding= "0" cellspacing= "2" border = "0" > <?php // Verzeichniss öffnen $verzeichnis = openDir( "$pfad" ); while ( $file = readDir( $verzeichnis )) { if ( $file != "." && $file != ".." ) { ?> <tr> <td width= "30" ><img src= "include/images/icons/pdf.jpg" /></td> <td style= "float:left;" ><a href= "<?=$pfad.$file?>" ><?= $file ?></a><br /></td> </tr> <?php } } ?> </table> <br /><br /> <a href= "http://www.chip.de/downloads/Adobe-Reader-Patch_16943484.html" target= "_blank" >Programm um Pdf Dateien zu öffnen (100% kostenlos)</a> <?php closeDir ( $verzeichnis ); // Verzeichnis schließen ; $design ->footer(); ?> |
Zuletzt modifiziert von Nobody is perfe am 17.10.2009 - 13:29:56