Skip to content

Commit

Permalink
Ehhh I have neglected to update the
Browse files Browse the repository at this point in the history
  • Loading branch information
KoleckOLP committed Jul 23, 2020
1 parent 8c48a2c commit dc68798
Show file tree
Hide file tree
Showing 108 changed files with 11,317 additions and 557 deletions.
Binary file modified koleckolp.comli.com/gallery/gam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion koleckolp.comli.com/gallery/games/adult/adult.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</script>

<div class="move">
<h2>Secret 2/2 Adult Games</h2>
<h2>Secret Two, Adult Games</h2>
<h3>All the flash Ganes open a new tab in resolution roughly 800x600 to work on 99% of devices.<br> You should be able to resize them by dragging the bottom left corner.</h3>
</div>
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="search..."> Search for a game.
Expand Down Expand Up @@ -117,6 +117,17 @@ <h2>
<h2>Banned from Equestria 1.6.5</h2>
</a>
</li>
<li>
<a id="nadps" href="#">
<h2>#Windows Games:
<h2>
</a>
</li>
<li>
<a target="_blank" href="adult/games?gm=ptc">
<h2>Pico to Chiko</h2>
</a>
</li>
</ul>

<style>
Expand Down
4 changes: 2 additions & 2 deletions koleckolp.comli.com/gallery/games/adult/games/index.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
$gm = $_GET["gm"];
if ($gm == "bfe")
if ($gm == "bfe" || $gm == "ptc")
{
header("Location: ../../../..?id=bfe");
header("Location: ../../../..?id=".$gm);
}
?>
<head>
Expand Down
48 changes: 48 additions & 0 deletions koleckolp.comli.com/gallery/games/adult/games/ptc.html
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>
7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/acp.html

This file was deleted.

35 changes: 35 additions & 0 deletions koleckolp.comli.com/gallery/games/android/android.php
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>";
?>
7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/bae.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/bcp.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/bwf.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/codboz.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/fb.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/ff1.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/ff2.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/ff3.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/ff6.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/gta3.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/gtactw.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/gtalcs.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/gtasa.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/gtavc.html

This file was deleted.

31 changes: 28 additions & 3 deletions koleckolp.comli.com/gallery/games/android/index.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,33 @@
<?php
$gm = $_GET["gm"];
$json = file_get_contents('../games.json');
$json_games = json_decode($json,true);
$games = $json_games["android"];
//$json = file_get_contents('../games.json');
//$json_games = json_decode($json,true);
//$games = $json_games["android"];

$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 FROM games WHERE platform='android'";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
$games[] = $row['game'];
}
} else {
echo "0 results";
}
$conn->close();
//You remember that guy kangalioo, he's done it again.
if (in_array($gm, $games))
{
Expand Down
7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/mc.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/mlphq.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/mlprr.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/srddc.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/srr.html

This file was deleted.

7 changes: 0 additions & 7 deletions koleckolp.comli.com/gallery/games/android/sth.html

This file was deleted.

Loading

0 comments on commit dc68798

Please sign in to comment.