Initial code commit

This commit is contained in:
2026-01-04 05:37:43 -05:00
parent 0af7ac5c9e
commit 7a4ef87470
11 changed files with 306 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
$command = "/usr/local/bin/backtone";
$argument = "BASE64ENCODEDINPUTXML";
$output = shell_exec(escapeshellcmd($command) . " " . escapeshellarg($argument));
header("Content-Type: application/xml; charset=utf-8");
echo $output;
?>