-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,643 changed files
with
1,171,455 additions
and
106,454 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2711 276360982 |
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
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 |
2 changes: 2 additions & 0 deletions
2
.well-known/pki-validation/23EA06D41233EE083FE2CC842DC4F44B.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
e90371fd6f151b300c2c47fdd60d137bbefe768cb64b5363e06161f4615b19b9 | ||
comodoca.com |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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(); | ||
?> |
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
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(); | ||
?> |
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
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(); | ||
?> |
Oops, something went wrong.