Voici mon problème, je n'arrive pas a inscrire mes données dans ma base de donnée voici le script :
<?php
$date = "le : ".$_POST['nom_d']."/".$_POST['nom_m']."/".$_POST['nom_y'];
$req = $db -> prepare ('INSERT INTO mod_match(match_team, match_date, match_map_1_id, match_score_map_1, match_score_map_1_adversaire, match_map_2_id, match_score_map_2, match_score_map_2_adversaire) VALUES(:match_team, :match_date, :match_map_1_id, :match_score_map_1, :match_score_map_1_adversaire, :match_map_2_id, :match_score_map_2, :match_score_map_2_adversaire)');
$req-> execute(array(
'match_team' => $_POST['team'],
'match_date' => $date,
'match_map_1_id' => $_POST['match_map_1_id'],
'match_score_map_1_adversaire' => $_POST['match_score_map_1_adversaire'],
'match_score_map_1' => $_POST['match_score_map_1'],
'match_map_2_id' => $_POST['match_map_2_id'],
'match_score_map_2_adversaire' => $_POST['match_score_map_2_adversaire'],
'match_score_map_2' => $_POST['match_score_map_2_id']
));
$req->closeCursor();
echo 'Match ajoutée ! Cliquez <a href="index.php?cat=match">ici</a> pour retourner a l\'accueil match';
?>
Chaque valeur on été tester grâce a un echo...Voici ma base de donnée :

Merci d'avance.
PS : Avant le script pour l'inscription des valeurs dans la base de donnée, il y a toute les conditions a remplir je peut les fournir si cela pourrais venir de là.
Ce que l'on apprend par l'effort reste toujours ancré beaucoup plus longtemps.