How can I store the status in an array after concatenating

paskaa

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