HB/pages/mine_c.php

36 lines
891 B
PHP

<? session_start(); ?>
<html>
<head>
<title></title>
<link rel="stylesheet" media="screen" name="design" href="design/design.css">
<?
$id=$_SESSION['id'];
include 'ressource.php';
include 'bdd.php';
?>
</head>
<body>
<table>
<tr>
<? echo "<table align=center>
<tr><td><img src=images/mine_c.png height=120 width=120></td>
<td width=200>Purificateur de cristal niveau ".$mine_c."<br><br>";
$a=$mine_c+5;
$c=$mine_c-2;
echo '<table><tr><td>Niveau</td><td>Production par heure</td><td>Consommation énergie</td></tr><br>';
for ($c;$c<$a;$c++) {
$b=ceil((($c*20+(exp(($c)*0.325)*10))));
$h=ceil((($c*20+(exp(($c)*0.325)*10)))) - ceil(((($c-1)*20+(exp(($c-1)*0.325)*10))));
$p=ceil((exp($c*0.28)*10));
$g=ceil((exp($c*0.28)*10)) - ceil((exp(($c-1)*0.28)*10));
echo '<tr><td>'.$c.'</td><td>'.$b.' (+ '.$h.')</td><td>'.$p.' (+ '.$g.')</td></tr>';
}
echo"</table></td></tr>";
?>
</body>
</html>