HB/pages/mine_h.php

39 lines
936 B
PHP
Raw Normal View History

2007-03-31 10:00:00 +00:00
<? session_start(); ?>
<html>
<head>
<title></title>
<link rel="stylesheet" media="screen" name="design" href="design/design.css">
<?
$id=$_SESSION['id'];
$galaxy=$_SESSION['galaxy'];
$ss=$_SESSION['ss'];
$pos=$_SESSION['pos'];
include 'ressource.php';
include 'bdd.php';
?>
</head>
<body>
<table>
<tr>
<? echo "<table align=center>
<tr><td><img src=images/mine_h.png height=120 width=120></td>
<td width=200>Ioniseur niveau ".$mine_h."<br><br>";
$a=$mine_h+5;
$c=$mine_h-2;
echo '<table><tr><td>Niveau</td><td>Production par heure</td><td>Consommation <20>nergie</td></tr><br>';
for ($c;$c<$a;$c++) {
$b=ceil(($c*12+(exp($c*0.32)*10)));
$h=ceil(($c*12+(exp($c*0.32)*10))) - ceil((($c-1)*12+(exp(($c-1)*0.32)*10)));
$p=ceil((exp($c*0.31)*10));
$g=ceil((exp($c*0.31)*10)) - ceil((exp(($c-1)*0.31)*10));
echo '<tr><td>'.$c.'</td><td>'.$b.' (+ '.$h.')</td><td>'.$p.' (+ '.$g.')</td></tr>';
}
echo"</table></td></tr>";
?>
</body>
</html>