Re: [PHP] Resending POST Variables

2003-05-29 Thread Tom Woody
On Wed, 2003-05-28 at 11:38, Shaun wrote: > ok, > > basically this is so I can implement page numbering on my search results, > the user submits the form and I want to be able to send the form results > back to the same page when the user clicks 'next' or 'previous'. > I do the very same thing as

Re: [PHP] Resending POST Variables

2003-05-29 Thread Shaun
ok, basically this is so I can implement page numbering on my search results, the user submits the form and I want to be able to send the form results back to the same page when the user clicks 'next' or 'previous'. I have tried putting this at the top of the page: $_SESSION['post'] = $_POST; $_

RE: [PHP] Resending POST Variables

2003-05-29 Thread Wim Paulussen
You can do this either by sending 'hidden' input and store the POST value in the 'hidden' input or by storing the variables in a session. At least , that is what I do and it works for me. -Oorspronkelijk bericht- Van: Shaun [mailto:[EMAIL PROTECTED] Verzonden: Wednesday, May 28, 2003 6:23

Re: [PHP] Resending POST Variables

2003-05-29 Thread Adam Voigt
$value) echo ""; ?> Submit Again Like that? On Wed, 2003-05-28 at 12:22, Shaun wrote: > Hi, > > I have a page which uses POST variables sent from a form. If a user clicks > on a link on this page is it possible to send those POST variables to the > next page aswell? > > Thanks fo

Re: [PHP] Resending POST Variables

2003-05-29 Thread David Grant
Shaun wrote: Hi, I have a page which uses POST variables sent from a form. If a user clicks on a link on this page is it possible to send those POST variables to the next page aswell? You can send them by tagging them to the end of the link, or saving them into a session, but you can't (for obvi