I know the preferred way to prevent the 'confirm form resubmission' warning is to use GET. But when using Codeigniter you're mostly steered towards using POST (in the sense that most of the form helper functions won't work and other things).
What's the best way to prevent 'Confirm Form Resubmission' warning when using Codeigniter?
EDIT: people have good ideas, but my issue is that this is a search page where I want the form to be resubmitted. I can't use a redirect because that will wipe out the POST data.