I get a variable like this:
$VAR = "joao.silva/jose.ferreira/maria.jose/carlos.eduardo/";
I need to store it this way:
$VET = array('joao.silva', 'jose.ferreira', 'maria.jose', 'carlos.eduardo');
Could someone help me manipulate this information to save it this way?