View Single Post
Old 10-20-2008, 06:27 AM   #2 (permalink)
awuehr
The Contributor
 
awuehr's Avatar
 
Join Date: Oct 2008
Location: Nuremberg, Germany
Posts: 26
Thanks: 3
awuehr is on a distinguished road
Images

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
Send a message via ICQ to awuehr Send a message via Skype™ to awuehr
awuehr is offline  
Reply With Quote