Skip to content

Commit

Permalink
complete code
Browse files Browse the repository at this point in the history
  • Loading branch information
daanrox committed Feb 8, 2024
1 parent 5194c41 commit a1fb21f
Show file tree
Hide file tree
Showing 2,643 changed files with 1,171,455 additions and 106,454 deletions.
1 change: 1 addition & 0 deletions .ftpquota
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2711 276360982
8 changes: 8 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@


# php -- BEGIN cPanel-generated handler, do not edit
# Defina o pacote “ea-php81” como a linguagem padrão de programação “PHP”.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php81 .php .php8 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
e90371fd6f151b300c2c47fdd60d137bbefe768cb64b5363e06161f4615b19b9
comodoca.com
7 changes: 7 additions & 0 deletions _next/static/css/d1a514b40c89eb51.css

Large diffs are not rendered by default.

Binary file added _next/static/image/escudo-amarelo.webp
Binary file not shown.
Binary file added _next/static/image/escudo-azul.webp
Binary file not shown.
Binary file added _next/static/image/escudo-branco.webp
Binary file not shown.
Binary file added _next/static/image/escudo-marrom.webp
Binary file not shown.
Binary file added _next/static/image/escudo-preto-bronze.webp
Binary file not shown.
Binary file added _next/static/image/escudo-preto-ouro.webp
Binary file not shown.
Binary file added _next/static/image/escudo-preto-prata (1).webp
Binary file not shown.
Binary file added _next/static/image/escudo-preto-prata.webp
Binary file not shown.
Binary file added _next/static/image/escudo-preto.webp
Binary file not shown.
Binary file added _next/static/image/escudo-verde.webp
Binary file not shown.
Binary file added _next/static/image/escudo-vermelho.webp
Binary file not shown.
Binary file added _next/static/image/favicon.webp
Binary file not shown.
Binary file added _next/static/image/star.webp
Binary file not shown.
File renamed without changes
Binary file added _next/static/media/0cf0e55cc0ef3777-s.p.woff2
Binary file not shown.
Binary file added _next/static/media/52d824d87773b975-s.p.woff2
Binary file not shown.
Binary file added _next/static/media/678aac0e5bc9c96f-s.p.woff2
Binary file not shown.
Binary file added _next/static/media/b48eb25bc8e3acf2-s.p.woff2
Binary file not shown.
Binary file added _next/static/media/c819e066f954c4d7-s.p.otf
Binary file not shown.
Binary file added _next/static/media/escudo-branco.68d0cb4f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added adm/.DS_Store
Binary file not shown.
24 changes: 24 additions & 0 deletions adm/GGR/ggr_taxa.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
include './../../conectarbanco.php';

$conn = new mysqli('localhost', $config['db_user'], $config['db_pass'], $config['db_name']);

// Verificar a conexão
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

// Query de leitura
$sql = "SELECT ggr_taxa FROM ggr"; // Substitua sua_tabela pelo nome real da sua tabela

$result = $conn->query($sql);

if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo number_format($row["ggr_taxa"], 2, '.', '');
} else {
echo "0";
}

$conn->close();
?>
24 changes: 24 additions & 0 deletions adm/GGR/ggrpagototal.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
include './../../conectarbanco.php';

$conn = new mysqli('localhost', $config['db_user'], $config['db_pass'], $config['db_name']);

// Verificar a conexão
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

// Query de leitura
$sql = "SELECT ggr_pago FROM ggr"; // Substitua sua_tabela pelo nome real da sua tabela

$result = $conn->query($sql);

if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo number_format($row["ggr_pago"], 2, '.', '');
} else {
echo "0";
}

$conn->close();
?>
24 changes: 24 additions & 0 deletions adm/GGR/ggrtotal.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
include './../../conectarbanco.php';

$conn = new mysqli('localhost', $config['db_user'], $config['db_pass'], $config['db_name']);

// Verificar a conexão
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

// Query de leitura
$sql = "SELECT ggr_total FROM ggr"; // Substitua sua_tabela pelo nome real da sua tabela

$result = $conn->query($sql);

if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo $row["ggr_total"];
} else {
echo "0";
}

$conn->close();
?>
Loading

0 comments on commit a1fb21f

Please sign in to comment.