Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h1>Arreglos</h1>
- <h2>Creando arreglos</h2>
- <?
- $meses = array('Enero','Febrero','Marzo','Abril',
- 'Mayo','Junio');
- ?>
- <xmp>
- <?
- print_r($meses);
- ?>
- </xmp>
- <h2>Creando arreglos con clave</h2>
- <?
- $capitales = array('Argentina' => 'Buenos Aires',
- 'Uruguay' => 'Montevido',
- 'Chile' => 'Santiago');
- ?>
- <xmp>
- <?
- print_r($capitales);
- ?>
- </xmp>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement