Re: [PHP] Passing variables to another page - newbie

2001-05-06 Thread Dan Lowe
Previously, Dean Martin said: > Thanks to everyone for the help - unfortunately my problem seems to be the > function I'm using to do the redirecting. header() is supposed to be the > first item passed. What I'm trying to do is use a line of code well down > into the logic of my script to redire

Re: [PHP] Passing variables to another page - newbie

2001-05-06 Thread Jason Brooke
> Thanks to everyone for the help - unfortunately my problem seems to be the > function I'm using to do the redirecting. header() is supposed to be the > first item passed. What I'm trying to do is use a line of code well down > into the logic of my script to redirect the user to another page al

RE: [PHP] Passing variables to another page - newbie

2001-05-06 Thread Jason Murray
> Thanks to everyone for the help - unfortunately my problem > seems to be the function I'm using to do the redirecting. header() is > supposed to be the first item passed. What I'm trying to do is use a line of > code well down into the logic of my script to redirect the user to another > p

RE: [PHP] Passing variables to another page - newbie

2001-05-06 Thread Dean Martin
al Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 06, 2001 1:06 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Passing variables to another page - newbie also is you want to add more than one variable in the example given you use the '&' Sign ex with on

Re: [PHP] Passing variables to another page - newbie

2001-05-06 Thread Philip Olson
index.php?fruit=apple&color=green&lang=php If register_globals setting in php.ini configurations is 'on' then the following should all work : echo $fruit; // apple echo $color; // green echo $lang;// php echo $HTTP_GET_VARS['frui

Re: [PHP] Passing variables to another page - newbie

2001-05-06 Thread tcuhost
on?var1=etc&var2=123&var3=abc";); - Original Message - From: "Jack Dempsey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "Dean Martin" <[EMAIL PROTECTED]> Sent: Sunday, May 06, 2001 11:01 AM Subject: RE: [PHP] Passing variables to another page - n

RE: [PHP] Passing variables to another page - newbie

2001-05-06 Thread John Vanderbeck
Martin [mailto:[EMAIL PROTECTED]] > Sent: Sunday, May 06, 2001 1:50 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Passing variables to another page - newbie > > > I have an order form that is validating input, mailing me the > results of the > form, then I want to pass th

RE: [PHP] Passing variables to another page - newbie

2001-05-06 Thread Jack Dempsey
header("Location: http://something.foo.bar.com/page.extension?var1=etc";); -Original Message- From: Dean Martin [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 06, 2001 1:50 PM To: [EMAIL PROTECTED] Subject: [PHP] Passing variables to another page - newbie I have an order fo

[PHP] Passing variables to another page - newbie

2001-05-06 Thread Dean Martin
I have an order form that is validating input, mailing me the results of the form, then I want to pass the user off to either Paypal or Revecom (depending on their choice) for processing. Everything works except trying to pass the variables to the payment processor. I thought that header("locat