Example: (if the status can be: 'done', on_going', 'to_verify')
for loop starts here --------
I used
$status .= $status;
and if I perform
echo $status;
it will give me 'doneon_goingdoneto_verify'
for loop endshere --------
I would want to perform something based on the status like if there's 'on_going' status then set
$on_going =1;
However, if I performed concat, I can't check status by status. Any suggestion how I can do this?