Re: Index.php ligne 14
Posté : lun. 15 févr. 2016 10:42
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']);
}
}