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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -