first commit

This commit is contained in:
2026-04-24 15:32:21 +02:00
commit 20d40fead4
5046 changed files with 641038 additions and 0 deletions

14
_rejestracja/makl.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
$ob=imagecreatetruecolor(200,100);
if ($ob == FALSE ) {
echo "Obraz nie zostal poprawnie wygenerowany";
} else {
header('content-type: image/png');
if (imagepng($ob) == FALSE ) {
file_put_contents('log.txt','Funkcja imagepng nie zadzialal poprawnie');
} else {
file_put_contents('log.txt','Funkcja imagepng zadzialal poprawnie');
}
}
?>