├── README.md ├── assets └── main.css ├── close_sessions.php ├── index.php ├── panel.php └── validate.php /README.md: -------------------------------------------------------------------------------- 1 | # PHP-Server-Environment -------------------------------------------------------------------------------- /assets/main.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } 6 | 7 | body { 8 | display: flex; 9 | justify-content: center; 10 | align-items: center; 11 | height: 80vh; 12 | } -------------------------------------------------------------------------------- /close_sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jesusjha/PHP-Server-Environment/134b07403dc4a1f8978a331afc68e7ea27ef38b9/close_sessions.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |