I want to saved input field data in browser cache using Codeigniter
<input type="search" name="location" class="icon glass" placeholder="Enter Your Location" required>
This is my input field when a user inputs something and revisit this page another day this field data will be saved on browsers cache. how to enable this using Codeigniter
I tried with $this->output->cache($n);
But didn't understand with this. Can anyone please clarify me about Codeigniter caching to saved input field data in the browser cache.