I am using PHP
and I have an arrangement that shows me the following:
0:{clave: "GTO", id: "45", nombre: "Guanajuato"}
1:{clave: "MEX", id: "76", nombre: "México"}
2:{clave: "EUA", id: "54", nombre: "Estados Unidos"}
What I want to do is to repeat the data I have in it, and in the new arrangement is as follows:
0:{clave: "GTO", id: "45", nombre: "Guanajuato"}
1:{clave: "GTO", id: "45", nombre: "Guanajuato"}
2:{clave: "MEX", id: "76", nombre: "México"}
3:{clave: "MEX", id: "76", nombre: "México"}
4:{clave: "EUA", id: "54", nombre: "Estados Unidos"}
5:{clave: "EUA", id: "54", nombre: "Estados Unidos"}
I get the data from Base de Datos
, I use MVC
, PHP
, codeigniter
, MySQL
Someone who can help me ?, would be very much appreciated.