Advertisement
idsystems

PHP_Leccion1.9_04

Jan 20th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <h1>Arreglos</h1>
  2. <h2>Creando arreglos</h2>
  3. <?
  4.     $meses = array('Enero','Febrero','Marzo','Abril',
  5.         'Mayo','Junio');
  6. ?>
  7.  
  8. <xmp>
  9. <?
  10.     print_r($meses);
  11. ?>
  12. </xmp>
  13.  
  14. <h2>Creando arreglos con clave</h2>
  15. <?
  16.     $capitales = array('Argentina' => 'Buenos Aires',
  17.         'Uruguay' => 'Montevido',
  18.         'Chile' => 'Santiago');
  19. ?>
  20.  
  21. <xmp>
  22. <?
  23.     print_r($capitales);
  24. ?>
  25. </xmp>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement