I'm kinda confused in my case,
$counts="$s{$process[$count]}";
if i echo $counts with
echo "$counts";
it still showing the value, how can i echo $counts to show the variable name
$steamroller
(in this case the process is 'team', and count is 'roller')) instead of the value of the variable $system?
EDIT okay i found it by myself it should be
$counts='$s'.$process."[".$count."]";
thank you..