两个按钮递减相同的值

时间:2019-06-18 18:49:09

标签: php html

我正在用PHP和HTMl构建一个图书馆管理系统。  我在用户可以借书的借书系统上遇到一些问题。 这是我的emittere-carti.php:

<form action="imprumutare.php" method="POST">
          <table class="table table-dark">
        <thead>
          <tr>

         <th>Imprumutare</th>
          <th scope="col">Titlu </th>
          <th scope="col">Autor</th>
           <th scope="col">Categorie</th>
           <th scope="col">Stoc</th>
         </tr>
         </thead>
        <tbody>
         <?php

    $selectare="SELECT * FROM carti";
    $rezultat=mysqli_query($conn,$selectare);
if(mysqli_num_rows($rezultat)>0){
    while($row=mysqli_fetch_assoc($rezultat)){
    $carte_nume=$row['titlu'];
    $disabled=$row['stoc']>0 ? "" :"disabled";

?>  

<tr>

    <td><input type="submit" name="test" class="btn btn-secondary" 
       value="Imprumutare" <?php echo $disabled;?>></input>
    <td><input type="text" name="nume" value="<?php echo $row['titlu'];? 
    >"></input></td>
    <td><?php echo $row['autor'];?></td>
    <td><?php echo $row['categorie'];?></td>
        <td><?php echo $row['stoc'];?></td>
         </tr>
       <?php
        }
        }      
        ?>
        </tbody>

         </table>
        </form>

这是我的imprumutare.php(表示借款):

include('conexiune.php');

//sfarsit if
//Imprumutare
if(isset($_POST['test'])){
    $id=$_POST['identificator'];
    $nume_carte=$_POST['nume'];
    $sql_rezervare="UPDATE carti SET stoc=stoc-1 WHERE 
             titlu='$nume_carte'  ";
    if( mysqli_query($conn,$sql_rezervare)){
        header('location:emitere_carti.php');
    }
    else{
        die(mysqli_error($conn));
    }
}

这是有关我在说什么的屏幕截图: enter image description here

所以我的问题是两个按钮都递减相同的值(stoc的值)。 有人可以帮我吗?

0 个答案:

没有答案