%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www_old/
Upload File :
Create Path :
Current File : //var/www_old/surky.php__b81eaf3

<?php
  if(isset($_POST['odeslat']))
  {
    $dr = $_POST['drevo'];
    $hl = $_POST['hlina'];
    $ze = $_POST['zelezo'];
    $ob = $_POST['obili'];
    $cap = $_POST['kapacita'];
    
    $i = 0;
    $hlina = 0;
    $drevo = 0;
    $zelezo = 0;
    $obili = 0;
    
    $add = $dr+$hl+$ze+$ob;
    while($i+$add <= $cap)
    {
      $hlina += $hl;
      $drevo += $dr;
      $obili += $ob;
      $zelezo += $ze; 
      $i += $add; 
    }
    while($i+4 < $cap)
    {
      $hlina++;
      $drevo++;
      $obili++;
      $zelezo++; 
      $i += 4; 
    }
  }
?>
<html>
  <head>
    <title>Suroviny</title>
  </head>
  <body>
    <form action="surky.php" method="post" enctype="multipart/form-data">
      <table width="900" align="center" border="0">
      <tr>
          <td width="30%">Kapacita:</td>
          <td width="70%"><input type="text" name="kapacita" value="30000" /></td>
        </tr>
        <tr>
          <td width="30%">Drevo:</td>
          <td width="70%"><input type="text" name="drevo" value="130" /></td>
        </tr>
        <tr>
          <td width="30%">Hlina:</td>
          <td width="70%"><input type="text" name="hlina" value="120" /></td>
        </tr>
        <tr>
          <td width="30%">Zelezo:</td>
          <td width="70%"><input type="text" name="zelezo" value="170" /></td>
        </tr>
        <tr>
          <td width="30%">Obili:</td>
          <td width="70%"><input type="text" name="obili" value="70" /></td>
        </tr>
        <tr>
          <td width="30%">&nbsp;</td>
          <td width="70%"><input type="submit" value="Odeslat" name="odeslat" /></td>
        </tr>
      </table>
    </form>
    <h2>Vysledek:</h2>
    <ul>
      <li>Drevo: <?php echo $drevo; ?></li>
      <li>Hlina: <?php echo $hlina; ?></li>
      <li>Zelezo: <?php echo $zelezo; ?></li>
      <li>Obili: <?php echo $obili; ?></li>
      <li><b>Celkem: <?php echo $i; ?></b></li>
    </ul>
  </body>
</html>

Zerion Mini Shell 1.0