[Résolu] Index.php ligne 14

Installation & Configuration du logiciel
Med
Gsup LEVEL 2
Messages : 46
Enregistré le : ven. 29 janv. 2016 11:08

Voici à quoi ressemble mon début de fichier index.php, après réflexion il me semble que c'est la seule modification que j'ai apporté au fichier=> ajouter le "!isset" juste avant la premiere variable GET.

Code : Tout sélectionner

session_start();

if (!isset($_GET['page'])!='ticket' && $_GET['page'])
{
    //avoid back problem with browser
    if(!empty($_POST) OR !empty($_FILES))
    {
        $_SESSION['bkp_post'] = $_POST;
        if(!empty($_SERVER['QUERY_STRING']))
        {
            $currentpage .= '?' . $_SERVER['QUERY_STRING'] ;
        }
        header('Location: ' . $currentpage);
        exit;
    }
    if(isset($_SESSION['bkp_post']))
    {
        $_POST = $_SESSION['bkp_post'] ;
        unset($_SESSION['bkp_post']);
    }
}
GestSup: 3.2.25
Répondre