您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

43 行
1.1KB

  1. <!DOCTYPE html>
  2. <html>
  3. <title>Uzskaitam briketes</title>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1">
  5. <link rel="stylesheet" href="/include/css/w3.css">
  6. <?php
  7. include('include/db.php');
  8. ?>
  9. <div class="w3-container w3-center">
  10. <form action="" method="POST">
  11. <h2>Reģistrēt iztērētās briketes</h2>
  12. <img src="/img/briketes.png" alt="Briketes">
  13. <br>
  14. <input type="submit" name="pievienot" class="w3-button w3-jumbo w3-green" value="-1">
  15. </form>
  16. </div>
  17. <?php
  18. //Ja ir isset +1
  19. if(isset($_POST['pievienot']))
  20. {
  21. $psk = 1;
  22. $datums= date("Y-m-d");
  23. //formejam pieprasījumus
  24. $pievienot = "insert into Paterins (PatDaudzums,PatDatums) VALUES ($psk,'$datums')";
  25. $atnemt = "UPDATE Briketes SET BrikAtlicis = BrikAtlicis-1 WHERE `BrikID` = 1";
  26. mysqli_query($conn,$atnemt);
  27. if (mysqli_query($conn,$pievienot)) {
  28. echo "New record created successfully";
  29. } else {
  30. echo "Error: " . $pievienot . "<br>" . mysqli_error($conn);
  31. }
  32. echo ' <style>
  33. body {
  34. background-color: green;
  35. opacity: 5.9;
  36. }
  37. </style>';
  38. }
  39. ?>

Powered by TurnKey Linux.