passing an array via GET and a hidden form element
From: Robb Kerr (rkerr_at_digitaliguana.com)
Date: 11/02/03
- Next message: Koala Yeung: "RE: [PHP] How to remove new line character?"
- Previous message: Simon Stiefel: "RE: [PHP] How to remove new line character?"
- Next in thread: John W. Holmes: "Re: [PHP] passing an array via GET and a hidden form element"
- Reply: John W. Holmes: "Re: [PHP] passing an array via GET and a hidden form element"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: php-general@lists.php.net Date: Sun, 2 Nov 2003 10:38:43 -0600
I'm trying to pass a variable from a search page to the results page via
GET. The $MANUFACTURERS variable contains an array and is obtained from the
URL. I've tried the following to no avail...
<input name="manufacturer[]" type="hidden" multiple id="manufacturer[]"
value=<?php $manufacturer ?>>
<input name="manufacturer[]" type="hidden" multiple id="manufacturer[]"
value=<?php echo $manufacturer ?>>
<input name="manufacturer[]" type="hidden" multiple id="manufacturer[]"
value="<?php $manufacturer ?>">
<input name="manufacturer[]" type="hidden" multiple id="manufacturer[]"
value="$manufacturer">
<input name="manufacturer[]" type="hidden" multiple id="manufacturer[]"
value=$manufacturer>
Except for the last two entries, in the URL, the others all passed
"...&manufacturer%5B%5D=Array..."
When analyzing the variable on the results page, I wind up with
$manufacturer equaling an array with one element equaling "Array"...
Array ( [0] => Array )
Any suggestions?
Thanx,
-- Robb Kerr Digital IGUANA Helping Digital Artists Achieve their Dreams http://www.digitaliguana.com http://www.cancerreallysucks.org
- Next message: Koala Yeung: "RE: [PHP] How to remove new line character?"
- Previous message: Simon Stiefel: "RE: [PHP] How to remove new line character?"
- Next in thread: John W. Holmes: "Re: [PHP] passing an array via GET and a hidden form element"
- Reply: John W. Holmes: "Re: [PHP] passing an array via GET and a hidden form element"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|