1*24115d42SAndreas Gohr<!DOCTYPE html> 2*24115d42SAndreas Gohr<html lang="en" dir="ltr"> 3*24115d42SAndreas Gohr<head> 4*24115d42SAndreas Gohr <title>Filetype icons</title> 5*24115d42SAndreas Gohr 6*24115d42SAndreas Gohr <style> 7*24115d42SAndreas Gohr body { 8*24115d42SAndreas Gohr background-color: #fff; 9*24115d42SAndreas Gohr font-family: Arial; 10*24115d42SAndreas Gohr } 11*24115d42SAndreas Gohr </style> 12*24115d42SAndreas Gohr 13*24115d42SAndreas Gohr</head> 14*24115d42SAndreas Gohr 15*24115d42SAndreas Gohr<body> 16*24115d42SAndreas Gohr<?php 17*24115d42SAndreas Gohrforeach (glob('*.svg') as $img) { 18*24115d42SAndreas Gohr echo '<img src="'.$img.'" alt="'.$img.'" width="32" height="32" title="'.$img.'" /> '; 19*24115d42SAndreas Gohr} 20*24115d42SAndreas Gohr?> 21*24115d42SAndreas Gohr</body> 22*24115d42SAndreas Gohr</html> 23