hi,
<?php
$textToSave = "abc";
$fileNr = 1;
while (file_exists("ausgabe" . $fileNr . ".txt")) {
$fileNr += 1;
}
file_put_contents("ausgabe" . $fileNr . ".txt", $textToSave);
mfg
tami
hi,
<?php
$textToSave = "abc";
$fileNr = 1;
while (file_exists("ausgabe" . $fileNr . ".txt")) {
$fileNr += 1;
}
file_put_contents("ausgabe" . $fileNr . ".txt", $textToSave);
mfg
tami