Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im currently trying to build a validation class in PHP. What im trying to do is match the array of validations required with the $_POST array. My validation array gives the following values which are field names

$validation[0] = “order[0][company]”
$validation[1] = “order[1][company]”
$validation[2] = “order[2][company]”

And so on. The $_POST array looks like this

Array ( [order] => Array ( [0] => Array ( [company] => [link] => [username] => [password] => [comments] => ) [1] => Array ( [company] => [link] => [username] => [password] => [comments] => )

How do I access the value from the post array using the field names given above? I tried $_POST[$validation[0]] but it doesn’t seem to work.

share|improve this question
2  
possible duplicate of Using a path to an array item – fab Feb 23 at 15:57

1 Answer

$_POST[$validation[0]], with a pair of brackets instead of parentheses, as you'd access any other array.

share|improve this answer
Sorry that was a typo in my question, thats what i'm doing. – Billy Martin Feb 23 at 15:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.