1*c6480b76SAndreas Gohr<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2*c6480b76SAndreas Gohr "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3*c6480b76SAndreas Gohr<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 4*c6480b76SAndreas Gohr lang="en" dir="ltr"> 5*c6480b76SAndreas Gohr <title>filetype icons</title> 6*c6480b76SAndreas Gohr 7*c6480b76SAndreas Gohr <style type="text/css"> 8*c6480b76SAndreas Gohr body { 9*c6480b76SAndreas Gohr background-color: #ccc; 10*c6480b76SAndreas Gohr font-family: Arial; 11*c6480b76SAndreas Gohr } 12*c6480b76SAndreas Gohr 13*c6480b76SAndreas Gohr .box { 14*c6480b76SAndreas Gohr width: 200px; 15*c6480b76SAndreas Gohr float:left; 16*c6480b76SAndreas Gohr padding: 0.5em; 17*c6480b76SAndreas Gohr margin: 0; 18*c6480b76SAndreas Gohr } 19*c6480b76SAndreas Gohr 20*c6480b76SAndreas Gohr .white { 21*c6480b76SAndreas Gohr background-color: #fff; 22*c6480b76SAndreas Gohr } 23*c6480b76SAndreas Gohr 24*c6480b76SAndreas Gohr .black { 25*c6480b76SAndreas Gohr background-color: #000; 26*c6480b76SAndreas Gohr } 27*c6480b76SAndreas Gohr </style> 28*c6480b76SAndreas Gohr 29*c6480b76SAndreas Gohr</head> 30*c6480b76SAndreas Gohr<body> 31*c6480b76SAndreas Gohr 32*c6480b76SAndreas Gohr<div class="white box"> 33*c6480b76SAndreas Gohr<?php 34*c6480b76SAndreas Gohrforeach (glob('*.png') as $img) { 35*c6480b76SAndreas Gohr echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; 36*c6480b76SAndreas Gohr} 37*c6480b76SAndreas Gohr?> 38*c6480b76SAndreas Gohr</div> 39*c6480b76SAndreas Gohr 40*c6480b76SAndreas Gohr<div class="black box"> 41*c6480b76SAndreas Gohr<?php 42*c6480b76SAndreas Gohrforeach (glob('*.png') as $img) { 43*c6480b76SAndreas Gohr echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; 44*c6480b76SAndreas Gohr} 45*c6480b76SAndreas Gohr?> 46*c6480b76SAndreas Gohr</div> 47*c6480b76SAndreas Gohr 48*c6480b76SAndreas Gohr</body> 49*c6480b76SAndreas Gohr</html> 50