Пример #1
0
<?php

require 'TEMPService.class.php';
$celsius = $_GET['celsius'];
$tempIndex = 0.0;
if (is_numeric($celsius)) {
    $tempIndex = TEMPService::calculate($celsius);
}
echo $tempIndex;
<?php

require 'TEMPService.class.php';
$number = $_GET['number'];
$opc = $_GET['opc'];
$value = 0.0;
$value = TEMPService::getValue($number, $opc);
//sleep (1);
echo $value;