I have something like this:
<form>
<input type="radio" name="user[name]" value="">
<input type="radio" name="user[email]" value="">
</form>
And I was hoping to see
$ARGS = {
'user' => {
'name' => 'daniel',
'email' => '[EMAIL PROTECTED]',
}
};
however, all I'm getting is:
$ARGS = {
'user[name]' => 'daniel',
'user[email]' => '[EMAIL PROTECTED]',
};
what's the best way of submitting forms to be able to get such data
from forms? Especially when one wishes to group data per form and
fields are unknown?
-d
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Mason-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mason-users