Hi Tobias,
hab ich im script (nur im Thread!) noch vergessen: $index = 0;
Das funktioniert schon:
$index = 0;
$picture = "Bild";
$ext = ".jpg";
$fileName = sprintf("%s%d%s", $picture, $index, $ext );
$test = file_exists($fileName);
print "$test<br>"
ausgabe:
Bild0.jpg
1
Ich habs auch ohne ! probiert, nur entweder kommt 0 raus oder er hört nicht mehr auf zu zählen!
Bin auch erst anfänger in php, muss ich dazu sagen!
Irgendwo muss doch ein Fehler sein...