I have an array like this:
// print_r($_POST); produces the output below
Array ( [cp] => 293 [ab] => genp6 [ccID] => [ccG] => Array ( [905] => 905 ) )
All I need to extract is the last value - 905.
I've tried:
list($key, $value) = $_POST['ccG'];
but I can't sem to be able to capture it.