Home > Archive > PHP DB > December 2007 > Re: [PHP-DB] Sending value to another page...
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Re: [PHP-DB] Sending value to another page...
|
|
| Dee Ayy 2007-11-29, 7:01 pm |
| 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']);
| |
| VanBuskirk, Patricia 2007-11-29, 7:01 pm |
| Thanks all for your support!!
-----Original Message-----
From: Dee Ayy [mailto:dee.ayy@gmail.com]=20
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'=3DTEST222808
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']);
--=20
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
| |
|
|
|
|
|