For example if I have:
$person1 = "10";
$person2 = "-";
$person3 = "5";
I need to determine the person with the highest number and prepend their string with a “W” and also determine the person with the lowest (numeric) number and prepend their string with a “L”
I am trying to output:
$person1 = "W10";
$person2 = "-";
$person3 = "L5";
Hope that helps. It should give you hints on what functions to use. Peace Danuel
solution 2