Re: [PHP] passing form data using $_SESSION

2003-10-20 Thread Curt Zirzow
* Thus wrote Chris W. Parker ([EMAIL PROTECTED]): > Hiya. > > The way I do my forms is I create a form page and a corresponding > processing page. I don't like to post forms to themself so I always make > a processing page that header("Location: ...")'s back to the original > page. > > if(the nam

Re: [PHP] passing form data using $_SESSION

2003-10-20 Thread Colin Kettenacker
Hi Chris, I don't think there is anything wrong with this. The only gotcha that I can come up with is now that you are using session variables rather than "get" variables, you will no longer be able to bookmark the "state of that page", I think? What I mean is if your URL reads: index.php?e_name

[PHP] passing form data using $_SESSION

2003-10-20 Thread Chris W. Parker
Hiya. The way I do my forms is I create a form page and a corresponding processing page. I don't like to post forms to themself so I always make a processing page that header("Location: ...")'s back to the original page. Normally I create a long string that get's posted back to the original page