Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • master
1 résultat

admindelTopics.php

Blame
  • admindelTopics.php 214 o
    <?php
    require_once("./fonction.php");
    $bdd=bdd();
    
    if (isset($_GET['name'])) {
    	$name=$_GET['name'];
    
    	$requete=pg_query("DELETE FROM toppics where namet='$name'");
    	header("Location: ./adminEditTopics.php");
    }
    
    ?>