<?php 
  $connexion
=mysql_pconnect("localhost","ifips","ifips");
  
mysql_select_db("ifips",$connexion);

  
$titre="'".mysql_escape_string($_REQUEST['titre'])."'";

  
$resultat=mysql_query("DELETE FROM Films WHERE Titre=$titre");

  if(!
$resultat) {
    echo 
"Erreur MySQL : ".mysql_error($connexion);        
  } else {
    
header("Location: affichage.php");
  }
?>