![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
30/11/2007, 07:23
|
| | Fecha de Ingreso: junio-2003 Ubicación: Sevilla
Mensajes: 210
Antigüedad: 21 años, 8 meses Puntos: 1 | |
Re: Intercalar registros en una consulta... Esto es lo que quiero:
$ar1 = array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k');
$ar2 = array('2', '4', '7', '10');
Y el resultado sea:
Array
(
[0] => a
[1] => 2
[2] => b
[3] => 4
[4] => c
[5] => d
[6] => 7
[7] => e
[8] => f
[9] => 10
[10] => g
[11] => h
[12] => i
[13] => j
[14] => k
) |