Advertisement
abbest

supprimer_annonce.php

Mar 28th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <title>Bootstrap Example</title>
  5.   <meta charset="utf-8">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1">
  7.   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  8.   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  9.   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  10. </head>
  11. <body>
  12.  
  13. <div class="container">
  14.   <h2>Recherche Annonce</h2>
  15.   <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
  16.  
  17.       <br>
  18.       <div class="form-group">
  19.       <label for="ville">Catégorie :</label>
  20.       <label class="radio-inline">
  21.       <input type="radio" name="categorie" value="auto">Automobile
  22.     </label>
  23.     <label class="radio-inline">
  24.       <input type="radio" name="categorie" value="info">Informatique
  25.     </label>
  26.     <label class="radio-inline">
  27.       <input type="radio" name="categorie" value="divers">Divers
  28.     </label>
  29.     </div>
  30.     <button type="submit" class="btn btn-default" name="btn_chercher">Chercher</button>
  31.     <button type="reset" class="btn btn-default" name="btn_annuler"/>Annuler</button>
  32.   </form>
  33. </div>
  34. <?php
  35. if(isset($_POST['btn_chercher'])):
  36.     include_once('../lib/annonce.class.php');
  37.     $annonce=new annonce();
  38.  
  39.     extract($_POST);
  40.     $annonce->categorie=$categorie;
  41.     if($donnees=$annonce->deleteAnnonce()) echo 'Supprimer avec succes';
  42.     else echo 'Nope';
  43. endif;
  44. ?>
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement