I have an array below and I need to access the checkbox3 array and find out if it is set.
Something like this but it doesn't work:
<?php if(isset($fields['checkbox3']["One"])): ?>
One is set
<?php endif; ?>
array(2) {
["checkbox2"]=>
array(1) {
[0]=>
string(10) "Don't Show"
}
["checkbox3"]=>
array(5) {
[0]=>
string(3) "One"
[1]=>
string(3) "Two"
[2]=>
string(5) "Three"
[3]=>
string(4) "Four"
[4]=>
string(5) "Five"
}
}