1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
|
<?php
$id= $_GET["id"];
$abfrage = "SELECT * FROM SteckbriefTabelle WHERE id='$id'";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
{
$path = "Pferde/$row->geschlecht/$row->bildordner/";
$dir = opendir($path);
$extensions = array("gif", "jpeg", "jpg", "png", "JPG", "GIF", "JPEG", "PNG");
while(($file = readdir($dir)) !== false)
{
if(in_array(pathinfo($file, PATHINFO_EXTENSION), $extensions))
{
echo "<td>
<a href="#" onmouseover="TagToTip('<img class=bild src=\'$path$file\'>')" onmouseout="UnTip()"><img class=bild src='$path$file' style="height:70;" border=0></a></td>";
}
}
}
?>
|