RE: [PHP-DB] Variable passing

2001-04-24 Thread Jonathan Hilgeman
The HTTP_POST_VARS variable is an array of all the variables posted from the previous page. I did the same thing a lot and finally ended up creating this function: // Function to Pass Posted Variables as Hidden function PassHiddenVars () { // Bring in Posted Vars global $HTTP_POST

Re: [PHP-DB] Variable passing

2001-04-24 Thread johndmiller
Use sessions. This will store the values on the server rather than passing them back and forth. Lots less typing too. On Tue, 24 Apr 2001, Johannes Janson wrote: > You can output the passed varibles from the previous page > in an in the form of the following page. > > Johannes > > > "Brinzoi

Re: [PHP-DB] Variable passing

2001-04-24 Thread Johannes Janson
You can output the passed varibles from the previous page in an in the form of the following page. Johannes "Brinzoi Constantin Aurelian" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi ! > > Here is the problem: I got 8 pages, shown one after anoth