[SPIP] +spip v3.0.17
[lhc/web/clavette_www.git] / www / prive / images / index.php
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html>
3 <head>
4 <title>Index des icones de Spip</title>
5 <link rel="up" href="../">
6 </head>
7 <body>
8 <center>
9 <h1>Index des icones de <a href='http://www.spip.net'>Spip</a></h1>
10 <table>
11 <?php
12 $myDir = opendir('.');
13 while($file = readdir($myDir)) {
14 if (preg_match(",\.(png|gif)$,i", $file))
15 echo " <tr><td>$file</td><td><img src='$file' alt='$file' /></td></tr>\n";
16 }
17 ?>
18
19 </table>
20 </center>
21 </body>
22 </html>