Re: [PHP-DB] sessions and page has expired warning

2001-04-16 Thread Aleksey Yarilovets
Hi! I had exactly the same problem and i found the script that does the job. At the begining of your script write this: if ( $rd == 1 ) { $tmp_str_store = "var_list_str"; session_register ( "$tmp_str_store" ); $$tmp_str_store = ""; foreach ($HTTP_POST_VARS as $k => $v) if (

Re: [PHP-DB] sessions and page has expired warning

2001-04-15 Thread Aleksey Yarilovets
Hi! I had exactly the same problem with back/forward and i found the script that does the job: ""olinux"" <> wrote in message 000a01c0c0aa$2d465050$6401a8c0@amdk7">news:000a01c0c0aa$2d465050$6401a8c0@amdk7... I am using sessions to store variables until all forms have been filled out. at

Re: [PHP-DB] sessions and page has expired warning

2001-04-12 Thread Phil Jackson
Here, I think you may be over - using session variables a bit...have not used them in php, as I have version 3, which doesn't support them. However, by day I am an ASP developer, and article after article I read warns about session variables! They are great, but can hog memory, especially if

Re: [PHP-DB] sessions and page has expired warning

2001-04-10 Thread Marc Bragg
Could you briefly outline how you store variables using sessions until the forms are completed? Or point to a tutorial? thanx. olinux wrote: > I am using sessions to store variables until all forms have been filled out. at this >point they are put into the db. > I would like to know how i can

[PHP-DB] sessions and page has expired warning

2001-04-08 Thread olinux
I am using sessions to store variables until all forms have been filled out. at this point they are put into the db. I would like to know how i can eliminate the problem that occurs when the user presses the back button. I receive a "warning, page has expired... press refresh" I know that pres