在HTML / PHP中启用表单缓存

I am going a little crazy here trying to find a solution to something that is probably pretty straight forward.

I have a group of reports on an intranet (not accesible to the outside world) and each report has an input form that has a bunch of HTML inputs that vary the report data.

Problem being when you hit back to the form from the report the form is reset to it's original state. I want it to cache (remember the HTML input variables) and all I can find is how to turn caching off, I want it on! I would prefer not to do this with $_SESSION and $_COOKIE storing as I have 120 reports with roughly 10 or so inputs each, so its going to take forever to store everyone of them and re-load variables on refresh.

I am not the server administrator, but I beleive we are running Apache 2.2 web server. These are all PHP/HTML based pages. Any advice would be great!

It is not to do with my Browser as other forms are being cached. I am more looking into what modules on the server need to be activated to allow caching and what notes I should put in the header of the forms to allow caching. The intranet runs through a proxy so I am thinking I will need cache-control to be public.

EDIT:

When I run the form page, the HTTP headers show me this which I feel should be changed:

(under Response Headers)

 X-Powered-By: PHP/5.3.3
 Via: *[REMOVED]*
 Server: Apache/2.2.3 (Red Hat)
 Proxy-Connection: Keep-Alive
 Pragma: no-cache
 Expires: Thu, 19 Nov 1981 08:52:00 GMT
 Date: Wed, 13 Feb 2013 23:33:32 GMT
 Content-Type: text/html; charset=UTF-8
 Content-Length: 5191
 Connection: Keep-Alive
 Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0

I have a feeling I need to change the Cache-Control and Pragma values. Anyone know how to acheive this?

trying adding these headers to the top of the page:

header("Cache-Control: private, max-age=10800, pre-check=10800");
header("Pragma: private");
header("Expires: " . date(DATE_RFC822,strtotime("+2 day")));

NOTE: if the form submits and post data to a second page, you may want to put it at the top of both pages. also, make sure the code is after any session_start(); if you are using sessions.

Try setting the autocomplete attribute of the inputs to on.

<input name="myinput" autocomplete="on" type="text">