PHP Pass Dynamic Array name to function
- by Brad
How do I pass an array key to a function to pull up the right key's data?
// The array
<?php
$var['TEST1'] = Array (
'Description' => 'This is a Description',
'Version' => '1.11',
'fields' => Array(
'ID' => array(
'type' => 'int',
'length' =>'11',
…