"refonte debut annee"

This commit is contained in:
JunkJumper
2020-09-07 10:27:18 +02:00
parent 4a2209224c
commit b95bd91fad
38 changed files with 603 additions and 1 deletions

View File

@ -0,0 +1,12 @@
<?php
$connect = new mysqli($servername, $username, $password, $dbname);
if($connect->connect_errno){
die("Connexion impossible");
}else{
echo "Connexion OK";
}
$insert = "INSERT INTO ANNUAIRE (nom,prenom,numPost) VALUES (?,?,?)";
$stmt = $connect->prepare($insert);
$stmt->bind_param("sss",$_POST["nom"],$_POST["prenom"],$_POST["numpost"]);
$stmt->execute();