mirror of https://github.com/itflow-org/itflow
Removed Telemetry test
This commit is contained in:
parent
5fdf956eb4
commit
e15d40be22
36
blank.php
36
blank.php
|
|
@ -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"); ?>
|
||||
Loading…
Reference in New Issue