Moved php from cgi-bin to backend

This commit is contained in:
Oleg Sh
2024-10-10 20:17:45 +02:00
parent aac9da9d45
commit 1576a1c6e4
24 changed files with 100 additions and 100 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
$matrix = $_GET["matrix"];
$text = $_GET["text"];
$file = fopen("../tmp/faildMatrix.txt", "a");
fprintf($file, "\n%s:\n", date("d.m.y"));
fprintf($file, "FaildMatrix (%s):\n%s\n", $text, $matrix);
fclose($file);
?>