html - How pass this values in PHP -


i think basic question, searching 2 hours , can't find works :-(

i have drupal webform collect personal information users , send page drupal module "webform remote post" (it removes "submitted").

the name attributes of input tags this:

<input name="submitted[address]"> 

i can use data in php this:

$address = $_post['address']; 

but problem date fields. here name attributes this:

edit: select element!

<select name="submitted[date][day]"> 

edit: tried this:

$day = $_post['date']['day']; 

how can day value $_post?

thank you!


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -