0
How can I delete the first result from the explode. Converting to array, $separa[0];
I can filter, but with difficulty to eliminate it from the foreach structure.
Example:
$separa = explode(",", $row['referencia']);
$separa[0]; //obtenho o primeiro resultado
foreach($separa as $ref ) :
echo$ref; //imprimir sem o $separa[0]; (primeiro resultado)
;
It worked, thank you Mastria.
– denis