Try:
<input type="text" name="product[]">
Advertising
<?
foreach ($product as $p) {
print $p;
}
?>
On Mon, 20 May 2002 11:05:07 +1200, Navid Y. wrote:
> Hello Everyone,
>
> I'm having trouble sending array values through forms. Will the
> following syntax create a variable called $product['desc'] on the next
> page?
> If not, what am I doing wrong here?
>
> Note: I tried this but it didn't work! When I tried doing it without
> using an array, but rather with a regular variable, it sent through just
> fine and created a variable of the name attribute in the input tag.
>
>
> menu_add.php
> -------------
> <form method="post" action="menu_list.php"> <input type="text"
> name="product[desc]"> </form>
>
>
> menu_list.php
> -------------
> echo $product['desc'];
>
>
> Result output
> -------------
> no output
--
Jason Morehouse ([EMAIL PROTECTED])
Netconcepts LTD - Auckland, New Zealand
Linux: because rebooting is for adding hardware
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php