I have a web page based on different PHP source file.
In one of these file, the code updates a cookie value:
setcookie('serial_number', $serial, time()+3600, '/');
In another file I would like to use the updated cookie,
$serialNew = $_COOKIE['serial_number'];
but I see always the old value, the new is not available until the page refresh.
How can I get the updated value? There is some way to do this?
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…