Hello,
Especially on the xxx.php page, since it takes a long time to fill out the form, sending the form fails because the standard session period expires.
Therefore, when the logged-in user visits the xxx.php page, I want to make the session duration specific to the xxx.php page 2 hours.
With the session below, will the server make the session duration for this page 2 hours?
$_SESSION['xxx_page_expiration'] = time() + (2 * 60 * 60);
I added the above code to the top of the xxx.php page