Files
intecsync/cgi-bin/vorbereitung/api.php
2019-07-29 11:07:35 +02:00

14 lines
155 B
PHP

<?php
$n = $_REQUEST['n'];
header("Content-Type: application/json");
echo(lenschomode($n));
function lenschomode($n) {
return pow($n,2);
}
?>