-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<h1> | ||
Pico to Chiko</h1> | ||
<h3>Download</h3> | ||
<a href="https://mega.nz/folder/AY5TxQgA#U_YjKHmVInW3hO8iEsvFhg">here</a><br> | ||
<p>read the .nfo if there is any</p> | ||
|
||
<style> | ||
html { | ||
background-color: #1d0023; | ||
} | ||
|
||
body { | ||
background-color: #1d0023; | ||
} | ||
|
||
header { | ||
background-color: #231828; | ||
} | ||
|
||
nav { | ||
background-color: #231828; | ||
} | ||
|
||
article { | ||
background-color: #231828; | ||
} | ||
|
||
footer { | ||
background-color: #231828; | ||
} | ||
|
||
a.cln { | ||
font-weight: bold; | ||
} | ||
|
||
a:link { | ||
color: rgb(77, 10, 202); | ||
text-decoration: none; | ||
} | ||
|
||
a:visited { | ||
color: rgb(83, 19, 135); | ||
} | ||
|
||
a:hover { | ||
color: rgb(255, 0, 0); | ||
} | ||
</style> |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
$gm = $_GET["gm"]; | ||
|
||
$servername = "localhost"; | ||
$username = "id1792536_koleckolp"; | ||
$password = "1234"; | ||
$dbname = "id1792536_kolecko"; | ||
|
||
// Create connection | ||
$conn = new mysqli($servername, $username, $password, $dbname); | ||
// Check connection | ||
if ($conn->connect_error) { | ||
die("Connection failed: " . $conn->connect_error); | ||
} | ||
|
||
$sql = "SELECT game, name, link FROM games WHERE game='$gm'"; | ||
$result = $conn->query($sql); | ||
|
||
if ($result->num_rows > 0) { | ||
// output data of each row | ||
while($row = $result->fetch_assoc()) { | ||
$name = $row["game"]; | ||
$namef = $row["name"]; | ||
$link = $row["link"]; | ||
} | ||
} else { | ||
echo "0 results"; | ||
} | ||
$conn->close(); | ||
|
||
echo "<h1>".$namef."</h1>"; | ||
echo "<h3>Download</h3>"; | ||
echo "<a href=\"".$link."\">APK + DATA</a><br>"; | ||
echo "<p>extract DATA into \"Android/obb/\"</p>"; | ||
?> |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.