12 lines
271 B
PHP
12 lines
271 B
PHP
<?php
|
|
// Controleer of afstand is meegestuurd
|
|
if(isset($_POST['afstand'])) {
|
|
$afstand = intval($_POST['afstand']); // integer
|
|
// Sla de waarde op in een tekstbestand
|
|
file_put_contents('afstand.txt', $afstand);
|
|
echo "OK";
|
|
} else {
|
|
echo "No data";
|
|
}
|
|
?>
|