[PHP-DB] Sending value to another page...

2007-11-29 Thread VanBuskirk, Patricia
I am trying to send an order number from a confirmation page to another form and insert it into the order number field on the new form. Can anyone tell me what I am doing wrong??!! Here's the portion of my code that has the link (it passes

Re: [PHP-DB] Sending value to another page...

2007-11-29 Thread Jason Gerfen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 VanBuskirk, Patricia wrote: I am trying to send an order number from a confirmation page to another form and insert it into the order number field on the new form. Can anyone tell me what I am doing wrong??!! Here's the portion of my code

Re: [PHP-DB] Sending value to another page...

2007-11-29 Thread Dee Ayy
I was going to guess: echo ($_GET['OrderNumber']); But I don't use that form. I use echo $_GET['OrderNumber']; But now I need to check out that quoted URL ... ?'OrderNumber'=TEST222808 as well. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP-DB] Sending value to another page...

2007-11-29 Thread VanBuskirk, Patricia
-Original Message- From: Jason Gerfen [mailto:[EMAIL PROTECTED] Sent: Thursday, November 29, 2007 1:38 PM Cc: php-db@lists.php.net Subject: Re: [PHP-DB] Sending value to another page... -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 VanBuskirk, Patricia wrote: I am trying to send an order

RE: [PHP-DB] Sending value to another page...

2007-11-29 Thread VanBuskirk, Patricia
] Sending value to another page... -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 VanBuskirk, Patricia wrote: I am trying to send an order number from a confirmation page to another form and insert it into the order number field on the new form. Can anyone tell me what I am doing wrong

Re: [PHP-DB] Sending value to another page...

2007-11-29 Thread Dee Ayy
I just tested ?'OrderNumber'=TEST222808 and it works with and without quotes. The problem is you have echo (['OrderNumber']) when you need echo $_GET['OrderNumber']; or possibly echo ($_GET['OrderNumber']); -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP-DB] Sending value to another page...

2007-11-29 Thread VanBuskirk, Patricia
Thanks all for your support!! -Original Message- From: Dee Ayy [mailto:[EMAIL PROTECTED] Sent: Thursday, November 29, 2007 1:48 PM To: php-db@lists.php.net Subject: Re: [PHP-DB] Sending value to another page... I just tested ?'OrderNumber'=TEST222808 and it works with and without quotes