Created
January 22, 2026 16:18
-
-
Save pazteddy/edcbd0b53a635ba0af1f7b5968b77f24 to your computer and use it in GitHub Desktop.
Lista de usuarios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $users = [ | |
| [ | |
| "id" => 1, | |
| "name" => "Ana García", | |
| "username" => "ana.garcia", | |
| "email" => "ana.garcia@example.com", | |
| "role" => "user", | |
| "status" => "active", | |
| "last_login" => "2026-01-20 09:15" | |
| ], | |
| [ | |
| "id" => 2, | |
| "name" => "Luis Pérez", | |
| "username" => "luis.perez", | |
| "email" => "luis.perez@example.com", | |
| "role" => "admin", | |
| "status" => "active", | |
| "last_login" => "2026-01-21 08:40" | |
| ], | |
| [ | |
| "id" => 3, | |
| "name" => "María López", | |
| "username" => "maria.lopez", | |
| "email" => "maria.lopez@example.com", | |
| "role" => "editor", | |
| "status" => "inactive", | |
| "last_login" => "2026-01-15 18:10" | |
| ] | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment