60 lines
		
	
	
		
			980 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			980 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en" dir="ltr">
 | 
						|
<head>
 | 
						|
    <title>Filetype icons</title>
 | 
						|
 | 
						|
    <style>
 | 
						|
        body {
 | 
						|
            background-color: #ccc;
 | 
						|
            font-family: Arial;
 | 
						|
        }
 | 
						|
 | 
						|
        .box {
 | 
						|
            width: 200px;
 | 
						|
            float: left;
 | 
						|
            padding: 0.5em;
 | 
						|
            margin: 0;
 | 
						|
        }
 | 
						|
 | 
						|
        .white {
 | 
						|
            background-color: #fff;
 | 
						|
        }
 | 
						|
 | 
						|
        .black {
 | 
						|
            background-color: #000;
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
<?php
 | 
						|
$fi_list = ''; $fi_list32 = '';
 | 
						|
foreach (glob('*.png') as $img) {
 | 
						|
    $fi_list .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
 | 
						|
}
 | 
						|
foreach (glob('32x32/*.png') as $img) {
 | 
						|
    $fi_list32 .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
 | 
						|
}
 | 
						|
echo '<div class="white box">
 | 
						|
'.$fi_list.'
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="black box">
 | 
						|
'.$fi_list.'
 | 
						|
</div>
 | 
						|
 | 
						|
<br style="clear: left" />
 | 
						|
 | 
						|
<div class="white box">
 | 
						|
'.$fi_list32.'
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="black box">
 | 
						|
'.$fi_list32;
 | 
						|
?>
 | 
						|
</div>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |