Salve,
in tutto questo tempo non avrete mai trovato da qualche parte che magari una stella dista da noi 8 anni luce (Sirio)? O una stella che dista da noi 500 secondi luce (Sole)? E a quanti chilometri equivalgono?
Bene, con questo script php fatto da me è possibile fare ciò:
Codice PHP:
<html>
<head>
<title>Trasformare un'unità di tempo luce in km</title>
<style type="text/css">
.8pt {
font-family: Tahoma, Verdana;
font-size: 8pt;
font-weight: 700;
color: #000080;
}
button {
width: 70px;
height: 30px;
font-family: Tahoma, Verdana;
font-size: 8pt;
font-weight: 700;
color: #000080;
}
</style>
</head>
<body>
<form class="8pt" method="get" action="luce.php">Trasforma <input class="8pt" type="text" size="10" name="distanza"> <select class="8pt" name="tipo" size="1">
<option value="anni">anni</option>
<option value="giorni">giorni</option>
<option value="ore">ore</option>
<option value="minuti">minuti</option>
<option value="secondi">secondi</option>
</select> luce in km<br />
<button type="submit">Invia</button>
<br />
<br />
<?php
$v_L = 299792.458;
if(isset($_GET['distanza']) && isset($_GET['tipo'])) {
$km = $_GET['distanza'];
switch($_GET['tipo']) {
case 'anni': $km *= 365;
case 'giorni': $km *= 24;
case 'ore': $km *= 60;
case 'minuti': $km *= 60;
default: break;
}
$km *= $v_L;
echo $_GET['distanza'], ' ', $_GET['tipo'], ' luce sono ', number_format($km, 0, ',', '.'), ' km';
}
?>
</form>
</body>
</html>
Questo è uno script fatto da me, ma lo potete personalizzare come volete...
Fatemi sapere,
foreach