Boy, you sure get around ramsfield (private joke).
Like Shrike but coded in a different way.
<?PHP
$gudtGroup = array (); // optional
// Array will start at index zero
$gudtGroup[] = array ('strmin' => 1, 'strMax' => 500, 'strPermit' => 23.5, 'strReview' => 15.28);
$gudtGroup[] = array ('strmin' => 501, 'strMax' => 600, 'strPermit' => 26.55, 'strReview' => 17.26);
// etc.
// Example of displaying second strPermit value
echo $gudtGroup[1]['strPermit']; // displays 26.55
?>
To start it with index 1 to match the VB code use this:
<?PHP
$gudtGroup = array (); // optional
// Array will start at index one
$gudtGroup[1] = array ('strmin' => 1, 'strMax' => 500, 'strPermit' => 23.5, 'strReview' => 15.28);
// This will automatically be index two
$gudtGroup[] = array ('strmin' => 501, 'strMax' => 600, 'strPermit' => 26.55, 'strReview' => 17.26);
// etc.
// Example of displaying second (2) strPermit value
echo $gudtGroup[2]['strPermit']; // displays 26.55
?>