Fatal error ???
Georginho
-
Barracuda -
Barracuda -
Voila j' ai le message suivant qui s' affiche :
Fatal error: Call to undefined function: obtenirdetailgroupe() in s:\www\festival\detailgroupe.php on line 27
La page qui est censé inclure l' erreur est la suivante :
<?
include("_debut.inc.php");
include("_gestionBase.inc.php");
include("_controlesEtGestionErreurs.inc.php");
// CONNEXION AU SERVEUR MYSQL PUIS SÉLECTION DE LA BASE DE DONNÉES festival
$connexion=connect();
if (!$connexion)
{
ajouterErreur("Echec de la connexion au serveur MySql");
afficherErreurs();
exit();
}
if (!selectBase($connexion))
{
ajouterErreur("La base de données festival est inexistante ou non accessible");
afficherErreurs();
exit();
}
$id=$_REQUEST['id'];
// OBTENIR LE DÉTAIL DU GROUPE SÉLECTIONNÉ
$lgGroupe=obtenirDetailGroupe($connexion, $id);
$id=$lgGroupe['id'];
$nom=$lgGroupe['nom'];
$identiteResponsable=$lgGroupe['identiteResponsable'];
$adressePostale=$lgGroupe['adressePostale'];
$nombrePersonnes=$lgGroupe['nombrePersonnes'];
$nomPays=$lgGroupe['nomPays'];
$hebergement=$lgGroupe['hebergement'];
echo "
<table width='60%' cellspacing='0' cellpadding='0' align='center'
class='tabNonQuadrille'>
<tr class='ligneTabNonQuad'>
<td width='20%'> Id: </td>
<td>$id</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> Nom: </td>
<td>$nom</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> identité Responsable: </td>
<td>$identiteResponsable</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> adresse Postale: </td>
<td>$adressePostale</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> Hébergement: </td>
<td>$hebergement</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> info: </td>
<td>$nomsPays</td>
</tr>
</tr>
</table>
<br>
</table>
<table align='center'>
<tr>
<td align='center'><a href='listeGroupe.php'>Retour</a>
</td>
</tr>
</table>";
?>
Est ce que quelqu'un pourrait m' aider svp ???
Fatal error: Call to undefined function: obtenirdetailgroupe() in s:\www\festival\detailgroupe.php on line 27
La page qui est censé inclure l' erreur est la suivante :
<?
include("_debut.inc.php");
include("_gestionBase.inc.php");
include("_controlesEtGestionErreurs.inc.php");
// CONNEXION AU SERVEUR MYSQL PUIS SÉLECTION DE LA BASE DE DONNÉES festival
$connexion=connect();
if (!$connexion)
{
ajouterErreur("Echec de la connexion au serveur MySql");
afficherErreurs();
exit();
}
if (!selectBase($connexion))
{
ajouterErreur("La base de données festival est inexistante ou non accessible");
afficherErreurs();
exit();
}
$id=$_REQUEST['id'];
// OBTENIR LE DÉTAIL DU GROUPE SÉLECTIONNÉ
$lgGroupe=obtenirDetailGroupe($connexion, $id);
$id=$lgGroupe['id'];
$nom=$lgGroupe['nom'];
$identiteResponsable=$lgGroupe['identiteResponsable'];
$adressePostale=$lgGroupe['adressePostale'];
$nombrePersonnes=$lgGroupe['nombrePersonnes'];
$nomPays=$lgGroupe['nomPays'];
$hebergement=$lgGroupe['hebergement'];
echo "
<table width='60%' cellspacing='0' cellpadding='0' align='center'
class='tabNonQuadrille'>
<tr class='ligneTabNonQuad'>
<td width='20%'> Id: </td>
<td>$id</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> Nom: </td>
<td>$nom</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> identité Responsable: </td>
<td>$identiteResponsable</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> adresse Postale: </td>
<td>$adressePostale</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> Hébergement: </td>
<td>$hebergement</td>
</tr>
<tr class='ligneTabNonQuad'>
<td> info: </td>
<td>$nomsPays</td>
</tr>
</tr>
</table>
<br>
</table>
<table align='center'>
<tr>
<td align='center'><a href='listeGroupe.php'>Retour</a>
</td>
</tr>
</table>";
?>
Est ce que quelqu'un pourrait m' aider svp ???