I have a field on my list page with an array to display a persons full name:
$value = $data["lname"].', '.$data["fname"]." ".$data["mi"];
I have another field from a lookup wizard where the lookup table used is 'lu_rank' and the display field name is 'rank'. How do I add this to my array to display after $data["mi"] I can't figure out the right syntax.