Hello,
I'm having an implementation specific problem where i would like to
structure the paramaterdata other than the default manner.
[params] => Array
......(
............[form] => Array
..................(
........................[data] => Array
........................(
........................[Header] => Array
..............................(
....................................[Gene Name] => sctg_2370_1
....................................[Species] => Ectocarpus
siliculosus
where one could make this by:
$this->html->input('Header/Gene Name', ... );
Unfortunately, while this is okay for the structure above, on some
occassions i would like to nest this array deeper, like this:
[params] => Array
......(
............[form] => Array
..................(
........................[data] => Array
........................(
........................[Header] => Array
..............................(
....................................[Gene Name] => Array
.........................................(
...............................................[Contig] => sctg_2370_1
I automatically tried:
$this->html->input('Header/Gene Name/Contig', ... );
However, only one '/' is taken, '/Contig' is ignored.
Is it possible to structure this array in the second manner, using the
HtmlHelper?
Thanks in advance,
Kraek
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---