-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraitement.php
34 lines (29 loc) · 957 Bytes
/
traitement.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
try{
require('connection.php');
$requete=$con->prepare("INSERT INTO personne(NOM,PRENOM,ADRESSE)
VALUES(:nom,:prenom,:adresse)"
);
function securisation($info){
$info = trim($info);
$info = stripslashes($info);
$info = strip_tags($info);
return $info;
}
$nom = securisation($_POST['nom']);
$prenom = securisation($_POST['prenom']);
$adresse = securisation($_POST['adresse']);
$requete->bindParam(':nom',$nom);
$requete->bindParam(':prenom',$prenom);
$requete->bindParam(':adresse',$adresse);
$resultat = $requete->execute();
if($resultat){
header('Location: affichage.php');
}else{
header('Location: erreur.php');
}
}catch(PDOException $e){
echo 'Erreur!!! '.$e->getMessage();
echo 'Echec de la connexion avec la base de donnée';
}
?>