[PHP] Re: Carrying Variables

2004-05-15 Thread Kim Steinhaug
You could ofcourse also use sessions. If you need to store alot of values, this would be the way to go. If its only a couple of short ones, ofcourse some GET variables is the simplest and fastest way to go. -- -- Kim Steinhaug --

Re: [PHP] Re: Carrying Variables

2004-05-15 Thread Daniel Clark
On the URL, use ? to separate the file name from the variables, and & to separate each additional variable. . &logdate= URL=check.php?Event_Type=&logdate="> >>How would you carry two variables? >> >> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

[PHP] Re: Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
OK I am a moron. I looked at your code and the answer is there!!! "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How would you carry two variables? > > > > "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Th

[PHP] Re: Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
How would you carry two variables? "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > That is it! Thank you very much! > > > "Torsten Roehr" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> w

[PHP] Re: Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
That is it! Thank you very much! "Torsten Roehr" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > This is what I have > > insert_into_the_database.php > > > content="10; URL=./check.php?">

[PHP] Re: Carrying Variables

2004-05-15 Thread Torsten Roehr
"Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > This is what I have > insert_into_the_database.php > content="10; URL=./check.php?"> You have to assign the value to a variable (name) and print the POST value with '"> This should work. Regards, Torsten

[PHP] Re: Carrying Variables

2004-05-15 Thread Ronald \"The Newbie\" Allen
This is what I have insert_into_the_database.php check.php This is still not working for me "Torsten Roehr" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > "Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > How would I carry a variable

[PHP] Re: Carrying Variables

2004-05-15 Thread Torsten Roehr
"Ronald "The Newbie" Allen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > 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