10-20-2008, 06:27 AM
|
#2 (permalink)
|
|
The Contributor
Join Date: Oct 2008
Location: Nuremberg, Germany
Posts: 26
Thanks: 3
|
Hi Benton,
In the HTML-Form just write:
HTML Code:
<input type="text" name="nav[float]" />
<input type="text" name="nav[width]" />
<input type="text" name="nav[a][font_family]" />
<input type="text" name="nav[a][width]" />
$_POST['nav'] should return the following:
Code:
$_POST['nav'] = array(
'float' => 'some value',
'width' => 'some value',
'a' => array(
'font-family'=>'some value',
'width' => 'some value'
)
);
Please let me know it this works, I am not really shure.
Greetings,
Alex
|
|
|