initial comit of repository

This commit is contained in:
jenz
2026-08-12 15:35:36 +02:00
commit 8ede019d8f
21 changed files with 4392 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
include('steam.php');
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$steamid = $_POST['steamid'];
$steam = new Steam();
$result = $steam->verifyAndConvertSteamID($steamid);
echo json_encode($result);
}
?>