Thread Mehrere Bilder an den Browser senden: Bildausgabe mit Perl (22 answers)
Opened by [E|B] at 2003-08-10 17:38

Gast Gast
 2004-04-19 20:56
#3642 #3642
könnte mE auch ganz profan so funktionieren:
Code: (dl )
1
2
3
4
5
print "Content-type: text/html\n\n";
$counter = 15748; # z.B.
@counter = split //, $counter;

print qq|<img src="$path_to_image/image$_.jpg">| foreach @counter;


Schlagt mich nicht - ich bin so schmerzempfindlich ... ;)

View full thread Mehrere Bilder an den Browser senden: Bildausgabe mit Perl