mirror of
https://github.com/rwinkhart/backtone.git
synced 2026-08-27 20:36:32 -04:00
9 lines
237 B
PHP
9 lines
237 B
PHP
<?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;
|
|
?>
|