wcf.regNote.message
|
|
PHP Source code |
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
$pfad="images/bilder/";
$verz=opendir ($pfad);
$count = 1;
while ($picname=readdir($verz))
{
if (filetype($pfad . $picname)!="dir")
{
if ($count == 1) {
$tbl_start = '<tr>';
} else {
$tbl_start = '';
}
$count++;
if ($count == 4) {
$tbl_end = '</tr>';
$count = 1;
} else {
$tbl_end = '';
}
$i++;
// echo "$file<br>";
$picname_epl = explode(".",$picname);
$picname_epl = $picname_epl[0];
// Template wird ausgegeben !! ((FELD 3)
eval ("\$picture_list.= \"".gettemplate("aboutme_pix_list")."\";");
}
}
closedir($verz);
// Template wird ausgegeben !! ( FELD 2)
eval ("\$content.= \"".gettemplate("aboutme_pix")."\";");
|
|
|
Source code |
1 2 3 4 5 6 |
aboutme_pix_ist.tpl FELD 2 $tbl_start <td align="center"><a href="images/bilder/$picname"><img src="images/bilder/thumbs_hover/$picname" name="$picname_epl" border="0"></a></td> $tbl_end |
|
|
Source code |
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 27 28 29 30 31 32 33 34 35 |
aboutme_pix.tpl
FELD 2
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="46%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#0D4782">
<td width="31%"><div align="center"><a href="index.php?site=aboutme"><img src="images/buttons/about_Profil.gif" width="100" height="21" border="0"></a></div></td>
<td width="34%" bgcolor="#0D4782"><div align="center"><img src="images/buttons/about_bilder_aktiv.gif" width="100" height="21" border="0"></div></td>
<td width="35%" bgcolor="#0D4782"><div align="center"><strong><a href="index.php?site=aboutme_100Fragen"><img src="images/buttons/about_100Fragen.gif" width="100" height="21" border="0"></a></strong></div></td>
</tr>
</table></td>
</tr>
<tr>
<td bgcolor="#44729B"> </td>
</tr>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<table align="center" width="100%">
$picture_list
</table></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
|


