Advertisement
idsystems

PHP_Leccion1.9_01

Jan 19th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. <!-- Ejemplo de Arreglos 01 -->
  2. <h1>Arreglos</h1>
  3. <?
  4.     $meses[0] = 'Enero';
  5.     $meses[1] = 'Febrero';
  6.     $meses[2] = 'Marzo';
  7. ?>
  8.  
  9. <xmp>
  10. <?
  11.     print_r($meses);
  12. ?>
  13. </xmp>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement