Thread Anfänger braucht hilfe.. (7 answers)
Opened by opixantos at 2006-01-11 01:34

opixantos
 2006-01-11 01:34
#6575 #6575
User since
2006-01-07
15 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
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";


ok.. ich hab da diesen script.. es funktioniert auch soweit so gut.. jedoch möchte ich das die buttons Copy und Delete die aufgeliestete Datei von imgpath zu imgpath2 Kopiert.. wen ich den Copy button klicke.. und die datei wen ich den Button Delete klicke bei imgpath löscht..

$imgpath der pfad wo die bilder aufgeliestet wird und $name die dateinamen inkl. endung..

wer kann mir bitte weiterhelfen.. mir ist klar das ich bei den img buttons ein from erstellen muss das dem script um welche datei es handelt übergiebt und dies dan löschen oder kopieren ausführt.. nur weis ich nicht wie ich das anstellen soll..

Danke für jede hielfe..

gruss opixantos\n\n

<!--EDIT|renee|1136946435-->

View full thread Anfänger braucht hilfe..