13 lines
272 B
PHP
13 lines
272 B
PHP
<?php
|
|
// Log alles wat binnenkomt
|
|
file_put_contents('log.txt', print_r($_POST, true), FILE_APPEND);
|
|
|
|
if(isset($_POST['afstand'])) {
|
|
$afstand = intval($_POST['afstand']);
|
|
file_put_contents('afstand.txt', $afstand);
|
|
echo "OK";
|
|
} else {
|
|
echo "No data";
|
|
}
|
|
?>
|