<table border="0" width="600">
<tr>
<td>
<? $sessionnavn = 'My';
echo '<h1>'.$sessionnavn.' album</h1>';
?>
<br>
<?php
$files = glob("images/".$sessionnavn."/thumbs/*.*");
for ($i=0; $i<count($files); $i++) {
$num = $files[$i];
echo '<a href="#"';
echo ' onClick=window.open("'.$num.'","myimage","width=600,height=600")';
echo '><img src="'.$num.'" alt="Opplastet bilde" width="100" height="100"></a>'." ";
} ?>
</td></tr>
</table>