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