tiens voici le code de ma page Stat_rech3.php:
<?php
// information pour la connection à le DB
require("../gestinc/connexion.php");
$etat='active';
//$link=mysql_connect("$host","$user","$password") or die('<font color=red>Erreur de connnection</font><br> '.mysql_error() );
//mysql_select_db("$bd") or die('<font color=red>Base inexistante</font><br> '.mysql_error() );
// Recuperation du
// Numero du Candidat
@$date=$_POST['date'];
@$poste =$_POST['poste'];
@$montant=$_POST['montant'];
// requete SQL pour la recherche
$sql="SELECT id,SUM(montant)FROM newrech GROUP BY id";
$reponse=@mysql_query($sql,$cnx) or die(mysql_error());
$total = @mysql_num_rows($reponse);
if($total) {
// debut du tableau
echo '<table bgcolor="#FFFFFF" width="967" border="0" cellspacing="2" cellpadding="2">'."\n";
// première ligne on affiche les titres prénom et surnom dans 2 colonnes
echo '<tr>';
echo'<td bgcolor="#669999" align="center"><b><u>Date de recharge </u></b></td>';
echo '<td bgcolor="#669999" align="center"><b><u>Poste</u></b></td>';
echo '<td bgcolor="#669999" align="center"><b><u>Montant</u></b></td>';
// echo '<td bgcolor="#669999" align="center"><b><u>utilisateur</u></b></td>';
//echo '<td bgcolor="#669999"><b><u>Statut</u></b></td>';
// echo '<td bgcolor="#669999" align="center"><b><u>Priorité</u></b></td>';
echo '<td bgcolor="#669999" align="center"><b><u>Apperçu</u></b></td>';
echo '<td bgcolor="#669999" align="center"><b><u>Modifier</u></b></td>';
//echo '<td bgcolor="#FFF"><b><u></u></b></td>';
echo '</tr>'."\n";
// lecture et affichage des résultats sur 2 colonnes, 1 résultat par ligne.
while($row = mysql_fetch_array($reponse)) {
echo '<tr>';
echo '<td bgcolor="#f0f0f0">'.$row["date"].'</td>';
echo '<td bgcolor="#f0f0f0">'.'<strong> </strong>'.$row["poste"].'</td>';
echo '<td bgcolor="#f0f0f0">'.$row["montant"].'</td>';
//echo '<td bgcolor="#f0f0f0">'.$row["statut"].'</td>';
//echo '<td bgcolor="#f0f0f0">'.$row["priorite"].'</td>';
echo '<td bgcolor="#30BDF3" align="center"><a class=top11 href=appercuRech.php?IdRech='.$row["id"].'><img src=../images/appercu.png title="appercu" width=20 height=20 /></a></td>';
echo '<td bgcolor="#30BDF3" align="center"><a class=top11 href=modif_Rech.php?IdRech='.$row["id"].'><img src=../images/modifier.png title="modifier" width=20 height=20 /></a></td>';
//echo '<td bgcolor="#30BDF3" align="center"><a class=top11 href=modif_inci2.php?IdIncident='.$row["id"].'><img src=../images/cloturer.png title="Clôturer" width=20 height=20 /></a></td>';
echo '</tr>'."\n";
}
echo '</table>'."\n";
// fin du tableau.
}
else echo 'Pas de resultat pour cette statistique';
// on libère le résultat
mysql_free_result($reponse);
?>
mais il m'affiche cette erreur :Notice: Undefined index: date in C:\Local Disk D_11520131229\EasyPHP-12.1\www\gestionIncident\gestinc\stat_rech3.php on line 104
Notice: Undefined index: poste in C:\Local Disk D_11520131229\EasyPHP-12.1\www\gestionIncident\gestinc\stat_rech3.php on line 105
Notice: Undefined index: montant in C:\Local Disk D_11520131229\EasyPHP-12.1\www\gestionIncident\gestinc\stat_rech3.php on line 106