I have a form that builds a JSON string to be saved inside a database table where the form elements names are array based to improve JSON creation.
The names are created dynamically like the following:
table[column][name][0]
table[column][name][1]
table[column][name][2]
table[column][name][3]
But I am actually running accross a situation.
I know that I can access this POST value as:
$_POST[table][column][name][0]
$_POST[table][column][name][1]
//.. and so on
But the problem is that I receive the element name as a string
table][column][name][0]
How can I get
$_POST[table][column][name][0]
from
table[column][name][0]