This file contains 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
<!-- COLOQUE NO TOPO DA INDEX DO SEU SITE --> | |
<?php | |
require_once("status-server.php"); | |
$serverStatus = new ServerStatus(); | |
?> | |
<!-- COLOQUE NA PARTE DE STATUS DO SEU SITE, SE JÁ EXISTE O TEXTO, REMOVA-O --> | |
<?php | |
echo "Status do servidor: $serverStatus->server_is_online <br />"; // Retorna se o servidor está online ou offline | |
echo "Contas registradas: $serverStatus->registered_accounts <br />"; // Retorna o número de contas cadastradas |
This file contains 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 | |
/* | |
* @author Pedro | |
*/ | |
$host = "localhost"; | |
$user = "root"; | |
$pass = ""; | |
$banco = "gc"; |