Leser: 1
8 Einträge, 1 Seite |
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
$imgpath="meinpfad";
$imgpath2="meinpfad1";
$pos=0;
$upname="";
$count=0;
@names=readdir(CURDIR);
print "Content-type: text/html", "\n\n";
print "<html><head><title></title></head>\n";
print "<body bgcolor='#FFFFFF' text='#000000' background='http://www.swiss-panther-units.com/spuafimages/bgcgi.jpg' link='#0000FF' vlink='#0000FF' alink='#0000FF'>\n";
print "<img src='http://www.swiss-panther-units.com/spuafimages/tocgi.gif' width='674' height='86'>\n";
print "<table width='674' border='0' cellpadding='0' cellspacing='0'>\n";
print " <tr>\n";
print " <td>\n";
print "<div align='center'>\n";
print "<table width='596' border='0' cellpadding='5' cellspacing='0'>\n";
print " <tr>\n";
print " <td bgcolor='#000000'><div align='right'><A HREF='$screenshotviewer'><img src='http://www.swiss-panther-units.com/spuafimages/reloadbutton.gif' width='40' height='35' border='0'></a></div></td>\n";
print " </tr>\n";
print "</table>\n";
scrolling='yes'>\n";
print "</iframe>\n";
print "<table width='596' border='0' cellpadding='5' cellspacing='0'>\n";
for $name(@names)
{
if ($count==0)
{
print "<TR>\n";
}
$upname=uc($name);
## .jpg
$pos=index($upname,".JPG");
if ($pos > 0)
{
print "<TD ALIGN='CENTER' bgcolor='#FFFFFF'><img src='".$imgpath.$name."' width='160' height='120'></img><BR><font face='Verdana, Arial, san serif' SIZE=-1>$name</font><br><A HREF='".$imgpath.$name."' target='screenzoom'><img src='http://www.swiss-panther-units.com/spuafimages/iconzoom.gif' width='40' height='40' border='0' hspace='5'></a><A HREF='WASMACHEN'><img src='http://www.swiss-panther-units.com/spuafimages/iconcopy.gif' width='40' height='40' border='0' hspace='5'><img src='http://www.swiss-panther-units.com/spuafimages/icondelete.gif' width='45' height='40' border='0' hspace='5'></TD>\n";
$count=$count+1;
}
##
if ($count==3)
{
print "</TR>\n";
$count=0;
}
}
closedir(CURDIR);
if ($count>0)
{
print "</TR>\n";
}
print "</table>\n";
print "</div>\n";
print " </td>\n";
print " </tr>\n";
print "</table>\n";
print "</body></html>\n";
QuoteWegen dem Geschwindigkeitsding bietet HTML template ja Template cache.
8 Einträge, 1 Seite |