I have this code
<?php
session_start();
session_cache_limiter('private,must-revalidate');
header("Cache-control: private");
?>
on the top of page to save and show entered data when click on back button. however, values from two select tags (populated by AJAX) disappeared anyway (all other fields are saved/recovered). is tyhere any way how to recover all fields, please?
<?php
session_start();
session_cache_limiter('private,must-revalidate');
header("Cache-control: private");
?>
on the top of page to save and show entered data when click on back button. however, values from two select tags (populated by AJAX) disappeared anyway (all other fields are saved/recovered). is tyhere any way how to recover all fields, please?