Guest User

Untitled

a guest
Apr 23rd, 2018
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2. $usuarios = array(
  3.     0 => array(
  4.         'nombre' => 'Anonimo',
  5.         'correo' => 'user@noreply.com'
  6.     ),
  7.     1 => array(
  8.         'nombre' => 'registrado',
  9.         'correo' => 'registrado@email.com'
  10.     )
  11. );
  12.  
  13. $total = count($usuarios);
  14. $index = 0;
  15.  
  16. while ($total--) {
  17.     echo '<pre>' . print_r($usuarios[$index], true) . '</pre>';
  18.     $index++;
  19. }
Add Comment
Please, Sign In to add comment