Commit d0c9f5b
Changed files (1)
input_process.php
@@ -10,7 +10,7 @@
$lastodo = unserialize(file_get_contents($file));
echo 'Last = '.$lastodo.' ';
- echo 'Miles = '.(int)$data['odometer']-$lastodo. ' ';
+ echo 'Miles = '.((int)$data['odometer']-$lastodo). ' ';
$lastodo = serialize($data['odometer']);
file_put_contents($file, $lastodo);