66 lines
762 B
PHP
66 lines
762 B
PHP
|
|
<?php
|
|
|
|
require_once ('functions.php');
|
|
include('header.html');
|
|
|
|
///////////////////////////
|
|
echo<<<_css
|
|
|
|
<style>
|
|
|
|
|
|
</style>
|
|
|
|
|
|
_css;
|
|
echo "\n";
|
|
///////////////////////////
|
|
|
|
if ($_GET == null){
|
|
|
|
print <<<_HTML
|
|
<form method="get" action="php_3.php">
|
|
First name: <input type="number" name="numero" autofocus required placeholder="Insert the number here" min="1" max="15" ><br>
|
|
<input type="submit" value="Send">
|
|
</form>
|
|
|
|
|
|
_HTML;
|
|
|
|
|
|
} else {
|
|
|
|
echo "fattoriale " . fattoriale($_GET['numero']) . "\n";
|
|
echo "<br>";
|
|
|
|
echo "primi ";
|
|
for ($i = 1;$i < $_GET['numero'] ; $i++)
|
|
{
|
|
if (isPrime($i))
|
|
echo "$i ";
|
|
|
|
}
|
|
echo "<br>";
|
|
|
|
echo "tabellina ";
|
|
for ($i = 1;$i <= 10 ; $i++)
|
|
{
|
|
echo $i * $_GET['numero'] . " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include ('footer.html');
|
|
|
|
|
|
|
|
|
|
?>
|