This commit is contained in:
gabrielkheisa 2022-10-25 14:46:33 +07:00
parent 5e28997f91
commit 99258d5eb9
3 changed files with 12 additions and 13 deletions

View File

@ -1,9 +1,9 @@
<?php
$servername = "";
$username = "";
$password = "";
$dbname = "";
$servername = "127.0.0.1";
$username = "dbusr";
$password = "securepwd";
$dbname = "appdb";
//Query params
$q = $_REQUEST["q"];

View File

@ -10,10 +10,10 @@
<script src="https://gabrielkheisa.xyz/js/qrcode.min.js"></script>
<?php
$servername = "";
$username = "";
$password = "";
$dbname = "";
$servername = "127.0.0.1";
$username = "dbusr";
$password = "securepwd";
$dbname = "appdb";
$sesid = rand(1,999999999);

View File

@ -89,15 +89,14 @@ def checkindo():
while True:
mydb = mysql.connector.connect(
host="",
user="",
password="",
database=""
host="127.0.0.1",
user="dbusr",
password="securepwd",
database="appdb"
)
checkindo()
time.sleep(1)
# textwrap.fill(tp[0].upper(), thesize)