y no puedes usar un array y ya?
Código PHP:
Ver original<?php
$data = array('Azul', 'Verde', 'Rojo', 'Amarillo', 'Verde', 'Amarillo');
o en caso extremo:
Código PHP:
Ver original<?php
$col1 = "Azul";
$col2 = "Verde";
$col3 = "Rojo";
$col4 = "Amarillo";
$col5 = "Verde";
$col6 = "Amarillo";
if (substr($c, 0, 3) == 'col') { $data[$c] = $v;
}
}
Resultado: Azul, Verde, Rojo, Amarillo