sueckreimir

unos/brisanje2

Jul 11th, 2022 (edited)
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. To change this license header, choose License Headers in Project Properties.
  4. To change this template file, choose Tools | Templates
  5. and open the template in the editor.
  6. -->
  7. <html>
  8.     <head>
  9.         <meta charset="UTF-8">
  10.         <title></title>
  11.     </head>
  12.     <body>
  13.         <?php
  14.        
  15.         require 'konekcija.php';
  16.         if(isset($_GET['dvorana']))
  17.         {
  18.             $dvorana=$_GET['dvorana'];
  19.            
  20.              $query="DELETE FROM unosdvorana WHERE unosdvorana.dvorana = '$dvorana'";
  21.              $result= mysqli_query($link, $query);
  22.              
  23.              if($result==TRUE)
  24.              {
  25.                  echo '<a href="index.php">'.'Brisanje uspjesno-Vidi promjenu'.'</a>'.'<br>';
  26.              }
  27.         }
  28.        
  29.         ?>
  30.     </body>
  31.    
  32. </html>
  33.  
Add Comment
Please, Sign In to add comment