Re: [PHP] Carrying Variables

2004-05-15 Thread Ray Hunter
On Sat, 2004-05-15 at 02:53, Ronald "The Newbie" Allen wrote: > How would I carry a variable from one page to another > > Here is what I mean > > I have a send.php page and this is sent to > insert_into_database.php where the values of the previous page are inserted > into the database. > I then

Re: [PHP] Carrying Variables

2004-05-15 Thread Daniel Clark
I uses variables and method="post" to sent them to the next page. On your 2nd page it's inserting into the database, so past that page, if I want to retain the variables I either read them again from the database OR store those variables as $_SESSION variables. >>How would I carry a variable f

[PHP] Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
How would I carry a variable from one page to another Here is what I mean I have a send.php page and this is sent to insert_into_database.php where the values of the previous page are inserted into the database. I then use a meta=refresh to go to another page and evaluate the variable. The proble