Here is the array
$rarray = Array();
$rarray[] = Array(
'UID' => $userid,
'FName' => $fname,
'MiddleInitial' => $midname,
'LName' => $lname,
'WebActivated' => $rows[0][17]) ;
return sfault('Server', "Array starts with $rarray['FName']");
The above statement has the wrong syntax for showing me the array
value for FName. What would the correct syntax be?