updates
@@ -0,0 +1,4 @@
|
||||
DATABASE_PASSWORD="QuaxlyQueen5012!"
|
||||
IP_ADDRESS="173.255.248.228"
|
||||
SPOTIFY_CLIENT_ID="ae7a0982e17e46c1a1662b5d69b70310"
|
||||
SPOTIFY_CLIENT_SECRET="a2c123588a6346d381f6888eadcefafa"
|
||||
@@ -0,0 +1,5 @@
|
||||
<h1>beavis.php</h1>
|
||||
<h1>beavis</h1>
|
||||
<h1>beavi</h1>
|
||||
<h1>avis.php</h1>
|
||||
<h1>beavis.p</h1>
|
||||
@@ -0,0 +1 @@
|
||||
Please enter a word in the field below. Thank you!
|
||||
@@ -0,0 +1,39 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Dummy Title</title>
|
||||
<link href="css/styles.css" type="text/css" rel="stylesheet">
|
||||
<script src="js/index.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Hello cruel world!</h1>
|
||||
<?php
|
||||
$content = '';
|
||||
$fs = fopen('includes/instructions.txt', 'r');
|
||||
while ($str = fgets($fs)) {
|
||||
$words = explode(' ', $str);
|
||||
foreach ($words as $w) {
|
||||
$content .= '<span>' . $w . '</span>';
|
||||
}
|
||||
}
|
||||
echo $content;
|
||||
$form = '
|
||||
<form method="post">
|
||||
<label for="word">Word</label>
|
||||
<input type="text" name="word" id="word" placeholder="word">
|
||||
<input type="submit">
|
||||
</form>
|
||||
';
|
||||
|
||||
if (empty($_POST))
|
||||
echo $form;
|
||||
else {
|
||||
echo $form;
|
||||
echo $_POST['word'];
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,37 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Dummy Title</title>
|
||||
<link href="css/styles.css" type="text/css" rel="stylesheet">
|
||||
<script src="js/index.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Hello cruel world!</h1>
|
||||
<?php
|
||||
if (!empty($_POST)) {
|
||||
$fs = fopen('records.txt', 'a');
|
||||
$text = implode(',', $_POST['options']);
|
||||
fwrite($fs, $text);
|
||||
} else {
|
||||
echo '
|
||||
<form method="post">
|
||||
<label for="metallica">Metallica</label>
|
||||
<input type="checkbox" value="Metallica" id="metallica" name="options[]">
|
||||
<label for="megadeth">Megadeth</label>
|
||||
<input type="checkbox" value="Megadeth" id="megadeth" name="options[]">
|
||||
<label for="clairo">Clairo</label>
|
||||
<input type="checkbox" value="Clairo" id="clairo" name="options[]">
|
||||
<label for="abstract">Kevin Abstract</label>
|
||||
<input type="checkbox" value="Kevin Abstract" id="abstract" name="options[]">
|
||||
<label for="slippy">Megadeth</label>
|
||||
<input type="checkbox" value="Slipknot" id="slippy" name="options[]">
|
||||
<input type="submit">
|
||||
</form>
|
||||
';
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1 @@
|
||||
Metallica,MegadethMetallica,MegadethMegadethMetallica,Megadeth,Clairo,Kevin Abstract,Slipknot
|
||||
@@ -0,0 +1,39 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Dummy Title</title>
|
||||
<link href="css/styles.css" type="text/css" rel="stylesheet">
|
||||
<script src="js/index.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Hello cruel world!</h1>
|
||||
<?php
|
||||
if (isset($_POST['band']))
|
||||
echo $_POST['band'];
|
||||
else
|
||||
echo form();
|
||||
?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
<?php
|
||||
function form()
|
||||
{
|
||||
$form = '
|
||||
<form method="post">
|
||||
<label for="metallica">Metallica</label>
|
||||
<input type="radio" value="metallica" id="metallica" name="band">
|
||||
<label for="megadeth">Megadeth</label>
|
||||
<input type="radio" value="megadeth" id="megadeth" name="band">
|
||||
<label for="maiden">Maiden</label>
|
||||
<input type="radio" value="maiden" id="maiden" name="band">
|
||||
<input type="submit">
|
||||
</form>
|
||||
';
|
||||
|
||||
return $form;
|
||||
}
|
||||
?>
|
||||
@@ -0,0 +1,15 @@
|
||||
Killing is my Business . . . and Business is Good!;1985;8;img/kimbabig.jpg++--++
|
||||
Peace Sells . . . But Who's Buying?;1986;8;img/psbwb.jpg++--++
|
||||
So Far, So Good . . . So What!;1988;8;img/sfsgsw.jpg++--++
|
||||
Rust in Peace;1990;9;img/rip.jpg++--++
|
||||
Countdown to Exctinction;1992;11;img/cte.jpg++--++
|
||||
Youthanasi;1994;12;img/ya.jpg++--++
|
||||
Cryptic Writings;1997;12;img/cw.jpg++--++
|
||||
Risk;1999;12;img/risk.jpg++--++
|
||||
The World Needs a Hero;2001;12;img/twnah.jpg++--++
|
||||
The System has Failed;2004;12;img/tshf.jpg++--++
|
||||
United Abominations;2007;11;img/ua.jpg++--++
|
||||
Endgame;2009;11;img/eg.jpg++--++
|
||||
13;2011;13;img/13.jpg++--++
|
||||
Super Colider;2013;14;img/sc.jpg++--++
|
||||
Dystopia;2016;11;img/dys.jpg
|
||||
@@ -0,0 +1,14 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Dummy Title</title>
|
||||
<link href="css/styles.css" type="text/css" rel="stylesheet">
|
||||
<script src="js/index.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Hello cruel world!</h1>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 208 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 116 KiB |