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


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to