Le script php fonctionne jusqu'à
Mais la redirection vers la page "objectifs.php" ne se fait pas.
Si je remplace " header('Location: objectifs.php')" par "nclude ("objectifs.php"); ", cela fonctionne, mais je ne veux pas charger "objectifs.php" sur la page d'authentification; je veux quitter la page d'authentification et aller sur la page "objectifs.php".
Merci de votre aide.
[code=php function chargerGlobal() {
$sql = "SELECT * FROM global WHERE nuser = '$nUser' AND semaine = '$semaine'";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
$titreGlobal= $row["titre"];
}
echo "titreGlobal = ". $titreGlobal;
} else if (mysqli_num_rows($result) == 0) {
$titreGlobal = "Pas encore créé";
echo $titreGlobal;
header('Location: objectifs.php');
//include ("objectifs.php");
}][/code]
Modifié par fredericmarcel (09 Dec 2015 - 07:58)
$titreGlobal = "Pas encore créé";
echo $titreGlobal
Mais la redirection vers la page "objectifs.php" ne se fait pas.
Si je remplace " header('Location: objectifs.php')" par "nclude ("objectifs.php"); ", cela fonctionne, mais je ne veux pas charger "objectifs.php" sur la page d'authentification; je veux quitter la page d'authentification et aller sur la page "objectifs.php".
Merci de votre aide.
[code=php function chargerGlobal() {
$sql = "SELECT * FROM global WHERE nuser = '$nUser' AND semaine = '$semaine'";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
$titreGlobal= $row["titre"];
}
echo "titreGlobal = ". $titreGlobal;
} else if (mysqli_num_rows($result) == 0) {
$titreGlobal = "Pas encore créé";
echo $titreGlobal;
header('Location: objectifs.php');
//include ("objectifs.php");
}][/code]
Modifié par fredericmarcel (09 Dec 2015 - 07:58)