mercoledì 1 giugno 2011

ordine_3

ORDINE 3 IN HTML
<html>
<head>
<title>ordinamento di 3 numeri</title>
</head>
<body>
<h1><center>ordine ascendente dei tre numeri</center></h1>
<p>
<form action="ordine_3.php" method="POST">
1<sup>o</sup> numero: <input type="text" name="prinum"><br>
2<sup>o</sup> numero: <input name="secnum"><br>
3<sup>o</sup> numero: <input name="ternum"><p>
<input type="submit" value="Invia">
<input type="reset" value="Cancella">
</form>
</body>
</html>

ORDINE_3 IN PHP

<html>
<head>
<title>ordinamento di 3 numeri</title>
</head>
<body>
<h1><center>ordine ascendente dei tre numeri</center></h1>
<p>
<?php
//iniziazione delle variabili
$prinum=$_POST['prinum'];
$secnum=$_POST['secnum'];
$ternum=$_POST['ternum'];
echo "$prinum - $secnum - $ternum";
?>
</body>
</html>

Nessun commento:

Posta un commento