A lo mejor podes usar una matriz multidimencional
Ejmplo
Código PHP:
$str = array(array('xxx', 'xxx'), array('Escuela', 'Colegio'), array('grado', 'Seccion'));
echo $str[0][0].' - '.$str[0][1].' - '.$str[1][0].' - '.$str[1][1].' - '.$str[2][0].' - '.$str[2][1];
Espero te ayude..