PDA

View Full Version : Refreshes!!!


ellcon
06-25-2002, 04:54 PM
I have a site that sends POSTed infromation between pages, what I need to do is refresh a page. Whenever I maually refresh that page it asks to resend information. I do and the page refreshes, updated. I wanted to do this automatically. However, when I put in javascript reload or metatag reload it automatically asks me to resend information. What I was wondering was if this resending of information could be done automatically? so the user doesn't have to push the resend button. I've tried passing in the 'true' parameter into the javascript reload function. If anyone could help that would be great. Maybe there is a work around through CGI or something.
Thanks
Ian

whackaxe
06-25-2002, 05:09 PM
you could try to keep the values in <input type="hidden"> tags and keep submitting the form

snakedevil1
06-25-2002, 05:11 PM
You could also try to save all the post info to a cookie, hten reload, and read it in fro mthe cookie

whackaxe
06-25-2002, 05:12 PM
or in a session variables with php (simpler)