to do with Notice error??
Posted: Sat May 21, 2005 7:36 am
Hello,
I've just searched the forum and googled to find a solution for those errors:
Notice: Undefined index: go_back in c:\wwwroot\frigerio\anagrafica_ins0.php on line 119
Notice: Undefined variable: ragsociale1 in c:\wwwroot\frigerio\anagrafica_ins0.php on line 155
....
I've got all of them for the following piece of code
I've tried also to put a @ before $variable_name but it doesn't solve the problem.. I know this happens since first time I visit the page I don't have variables stored into session's variables space, but the first time it's right, any suggestion to fix it? I can't change error level reporting.
Thanks
I've just searched the forum and googled to find a solution for those errors:
Notice: Undefined index: go_back in c:\wwwroot\frigerio\anagrafica_ins0.php on line 119
Notice: Undefined variable: ragsociale1 in c:\wwwroot\frigerio\anagrafica_ins0.php on line 155
....
I've got all of them for the following piece of code
Code: Select all
$ragsociale1 = $_SESSION['ragsociale1'];
$ragsociale2 = $_SESSION['ragsociale2'];
$indirizzo = $_SESSION['indirizzo'];
$cap = $_SESSION['cap'];
$citta = $_SESSION['citta'];
$provincia = $_SESSION['provincia'];
$modauto = $_SESSION['modauto'];
$targaauto = $_SESSION['targaauto'];
$garanzia = $_SESSION['garanzia'];
$circolare = $_SESSION['circolare'];
$telefono = $_SESSION['telefono'];
$cellulare = $_SESSION['cellulare'];
$email = $_SESSION['email'];
$kmanno = $_SESSION['kmanno'];
$dtnextcirc = $_SESSION['dtnextcirc'];
$dtproxctrl = $_SESSION['dtproxctrl'];
$servizioneve = $_SESSION['servizioneve'];
$qtgommeneve = $_SESSION['qtgommeneve'];
$stampa_garanzia = $_SESSION['stampa_garanzia'];
$stampa_circolare = $_SESSION['stampa_circolare'];
$sede = $_SESSION['sede'];I've tried also to put a @ before $variable_name but it doesn't solve the problem.. I know this happens since first time I visit the page I don't have variables stored into session's variables space, but the first time it's right, any suggestion to fix it? I can't change error level reporting.
Thanks