class.modifcontact.php 569 B

1234567891011121314151617181920
  1. <?php
  2. if(isset($_POST['submit'])) {
  3. $id = $_GET['ID'];
  4. $prenom = $_POST['prenom'];
  5. $nom = $_POST['nom'];
  6. $poste = $_POST['poste'];
  7. $entreprise = $_POST['entreprise'];
  8. $mobile = $_POST['mobile'];
  9. $sql = "UPDATE Contact SET Prenom='$prenom', Nom='$nom', Poste='$poste', IDEntreprise='$entreprise', Mobile='$mobile' WHERE ID='$id'";
  10. if ($conn->query($sql) === TRUE) {
  11. echo "Le contact a été modifié avec succès";
  12. echo $sql;
  13. // header("refresh:1; url=infocontact.php?ID=".$id);
  14. } else {
  15. echo "Erreur lors de la modification : " . $conn->error;
  16. }
  17. }
  18. ?>