Removed Telemetry test

This commit is contained in:
johnnyq 2022-01-15 22:38:46 -05:00
parent 5fdf956eb4
commit e15d40be22
1 changed files with 0 additions and 36 deletions

View File

@ -13,40 +13,4 @@
<hr>
<p>This is a great starting point for new custom pages.</p>
<?php
$company_name = "bum";
$postdata = http_build_query(
array(
'company_name' => "$company_name",
'city' => "$city",
'state' => "$state",
'country' => "$country",
'currency' => "$currency",
'comments' => "$comments"
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents('https://telemetry.itflow.org', false, $context);
echo $result;
header("Location: clients.php");
?>
<?php include("footer.php"); ?>