Skip to content

Commit dcd0098

Browse files
the past 2-3 week's work.
I've spent hours on this work trying to make it look perfect. The backend still needs some work done. particularly the music selection. I've used a HTML 5 audio element and haven't used any javascript code for it. Forgive me for it. But I did use some javascript for the player.php and the meganote.php
1 parent b5463b2 commit dcd0098

39 files changed

+1205
-54
lines changed

createacc.php

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<?php
2+
3+
include "server_vars.php";
4+
5+
$errors = 0;
6+
$error_string = "";
7+
8+
$regname = strip_tags($_POST["regname"]);
9+
$regpass = strip_tags($_POST["regpass"]);
10+
$confpass = strip_tags($_POST["confpass"]);
11+
$regmail = strip_tags($_POST["regmail"]);
12+
$phone = strip_tags($_POST["phone"]);
13+
$today = time();
14+
15+
if($regpass != $confpass)
16+
{
17+
$errors++;
18+
$error_string .= "Passwords don't match!<br>";
19+
//header("Location: signup.php");
20+
}
21+
else
22+
{
23+
$regpass = md5($regpass);
24+
}
25+
26+
$conn = new mysqli($HOST, $USERNAME, $PASSWORD, $DBNAME_CORE);
27+
28+
if($conn->connect_errno)
29+
{
30+
echo "MySQLi error occurred: " . $conn->connect_error;
31+
}
32+
else
33+
{
34+
echo "MySQLi connection successfully established!";
35+
}
36+
37+
if($q1 = $conn->prepare("SELECT COUNT(*) FROM coreaccounts WHERE username=?"))
38+
{
39+
$q1->bind_param("s", $regname);
40+
$q1->execute();
41+
$q1->bind_result($count);
42+
$q1->store_result();
43+
if($count == 0)
44+
{
45+
if($q2 = $conn->prepare("INSERT INTO coreaccounts VALUES (?, ?, ?, ?, ?)"))
46+
{
47+
$q2->bind_param("sssii", $regname, $regpass, $regmail, $phone, $today);
48+
$q2->execute();
49+
if($q2->affected_rows > 0)
50+
{
51+
echo "Successfully created an account!<br>";
52+
}
53+
else
54+
{
55+
echo "Query Failed!: " . $conn->error;
56+
}
57+
}
58+
else
59+
{
60+
echo "Query Failed!: " . $conn->error;
61+
}
62+
}
63+
}
64+
else
65+
{
66+
echo "Query Failed!: " . $conn->error;
67+
}
68+
69+
?>

dbutil.php

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
3+
include "server_vars.php";
4+
5+
class Database
6+
{
7+
private $mysqli;
8+
private $results;
9+
10+
function __construct($hostname, $username, $password, $dbname)
11+
{
12+
//constructor to instantiate a new db. All db related crap will happen with $mysqli.
13+
$mysqli = new mysqli($hostname, $username, $password, $dbname);
14+
}
15+
16+
function select($table, $fields, $where, $condition_fields, $condition_values)
17+
{
18+
$query = "SELECT ";
19+
for($i=0;$i<count($fields);$i++)
20+
{
21+
$query .= $fields[$i] . " ";
22+
}
23+
$query .= "FROM " . $table . "";
24+
if($where == 1)
25+
{
26+
$query .= " WHERE ";
27+
for($i=0;$i<count($condition_fields);$i++)
28+
{
29+
$query .= $condition_fields[$i];
30+
$query .= "=?"
31+
if(($i+2) != count($condition_fields))
32+
{
33+
$query .= " AND ";
34+
}
35+
else
36+
{
37+
break;
38+
}
39+
}
40+
$query .= $condition_fields[$i+1];
41+
}
42+
if($q1 = $mysqli->prepare($query))
43+
{
44+
$mysqli =
45+
}
46+
}
47+
}
48+
49+
?>

home.php

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
if(isset($_COOKIE["logged"]))
4+
{
5+
if($_COOKIE["logged"] != 1)
6+
{
7+
header("Location: signin.php");
8+
}
9+
}
10+
else
11+
{
12+
header("Location: signin.php");
13+
}
14+
15+
?>
16+
17+
<!DOCTYPE html>
18+
<html>
19+
<body>
20+
<div>Hello world!</div>
21+
</body>
22+
</html>

images/angry.png

14.4 KB
Loading

images/bored.png

108 KB
Loading

images/bored2.png

124 KB
Loading

images/earphones.png

140 KB
Loading

images/emojis.jpg

139 KB
Loading

images/happy.png

6.08 KB
Loading

images/logo.png

-50.6 KB
Loading

images/logo1.png

4.55 KB
Loading

images/logoblack.png

672 Bytes
Loading

images/music.jpg

914 KB
Loading

images/musicwood.jpeg

305 KB
Loading

images/phone2.png

133 KB
Loading

images/phone3.png

197 KB
Loading

images/sad.png

6.77 KB
Loading

images/scene1.jpg

236 KB
Loading

images/scene2.jpg

695 KB
Loading

images/scene3.jpg

42.3 KB
Loading

images/scene4.jpg

56.5 KB
Loading

images/scene5.jpg

54.8 KB
Loading

images/scene6.jpg

18.2 KB
Loading

images/scene7.jpg

77.1 KB
Loading

images/smiling.jpg

536 KB
Loading

index.php

+68-11
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,82 @@
1+
<!DOCTYPE html>
12
<html>
23
<head>
34
<link href="stylesheets/index.css" type="text/css" rel="stylesheet" />
4-
<meta name="viewport" content="width=device-width, initial-scale=1" >
5+
<meta name="viewport" content="width=device-width" >
56
</head>
67
<body>
7-
<div class="topbar_container" >
8-
<div class="topbar" >
9-
<img class="topbar_logo" src="images/logo.png" >
8+
<div class="topbar" >
9+
<img class="topbar_logo" src="images/logo.png" >
10+
<div class="topbar_button_area" >
11+
<a href="#about" ><div class="topbar_button" >About</div></a>
12+
<a href="#FAQ" ><div class="topbar_button" >FAQs</div></a>
13+
<a href="signin.php" ><div class="topbar_button" >Sign in</div></a>
14+
<a href="signup.php" ><div class="topbar_button" style="margin-right: 0px;" >Sign Up</div></a>
1015
</div>
1116
</div>
12-
<div class="intro_container" >
13-
<div class="intro" >
14-
<div class="intro_head" >Welcome to Emo</div>
15-
<div class="intro_section_container" >
16-
<div class="intro_left" ><br><br>A web based music player that suggests you music based on your emotions
17+
<div class="section1" >
18+
<div class="section1_container" >
19+
<div class="left_container" >
20+
<div class="tagline" >A web based music player that suggests you music based on your emotions
1721
<br><br>Let your emotions control the music.</div>
18-
<div class="intro_left" >
19-
<img class="intro_img" src="images/phone.png" >
22+
</div>
23+
<div class="right_container" >
24+
<br>
25+
<img class="image1" src="images/phone3.png" >
26+
<img class="image2" src="images/earphones.png" >
27+
</div>
28+
</div>
29+
</div>
30+
<div id="about" >
31+
<div class="title" >About Emo</div>
32+
<div class="body" >
33+
<div class="left_container" >
34+
<br><br>
35+
<img src="images/emojis.jpg" class="image3" >
36+
</div>
37+
<div class="right_container" >
38+
<br><br><br>
39+
<div class="description" >
40+
Emo is a web based music player that focuses on the user's emotions.
41+
Emo will select songs based on your emotion/mood at that time and tries to neutralize it.
42+
Emo provides a small emotion gathering UI where the user can provide information which would be further
43+
manipulated to serve the user from a repository of suitable counter-emotion songs.
2044
</div>
2145
</div>
2246
</div>
2347
</div>
48+
<div id="FAQ" >
49+
<div class="title" >Frequently Asked Questions</div>
50+
<div class="body" >
51+
<div class="question" >
52+
Does Emo use my private information for unauthorized purposes?
53+
</div>
54+
<div class="answer" >
55+
No, we don't use your data for intentional and unauthorized purposes. Firstly, we don't publicly store your music habits.
56+
All data is treated confidential and private. We only utilize your data for the betterment of the application and better
57+
usage.
58+
</div>
59+
60+
<div class="question" >
61+
How effective is your application?
62+
</div>
63+
<div class="answer" >
64+
We don't know the exact count of accuracy and precision. However, the application is designed in such a way, that it can
65+
actually neutralize your emotions.
66+
</div>
67+
68+
<div class="question" >
69+
How does Emo work Technically?
70+
</div>
71+
<div class="answer" >
72+
Okay, here comes the nerdy stuff. Firstly, we accept your user credentials, mostly this involves your emotions and music browsing habits.
73+
Then we process this received data and we select a counter-emotion song from a repository of high quality and authentic songs.
74+
Once that part is done, we play that music directly from a high persistence cloud server and Voila! we have successfully neutralized
75+
your emotions.
76+
</div>
77+
</div>
78+
</div>
79+
<br><br><br>
80+
<!--<div class="intro_left" ><br><br></div> !-->
2481
</body>
2582
</html>

loginauth.php

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
include "server_vars.php";
4+
5+
$regname = strip_tags($_POST["regname"]);
6+
$regpass = md5(strip_tags($_POST["regpass"]));
7+
8+
$conn = new mysqli($HOST, $USERNAME, $PASSWORD, $DBNAME_CORE);
9+
10+
if($conn->connect_errno)
11+
{
12+
echo "MySQLi error: " . $conn->connect_error;
13+
}
14+
else
15+
{
16+
echo "MySQLi connection successfully established";
17+
}
18+
19+
if($q1 = $conn->prepare("SELECT count(*) FROM coreaccounts WHERE username=? AND password=?"))
20+
{
21+
$q1->bind_param("ss", $regname, $regpass);
22+
$q1->execute();
23+
$q1->store_result();
24+
$count = $q1->num_rows;
25+
if($count == 1)
26+
{
27+
AuthorizeLogin();
28+
}
29+
else
30+
{
31+
echo "Username/Password is wrong, count is: \t " . $count;
32+
}
33+
}
34+
else
35+
{
36+
echo "Query error!: " . $conn->error;
37+
}
38+
39+
function AuthorizeLogin()
40+
{
41+
setcookie("logged", 1);
42+
header("Location: meganote.php");
43+
}
44+
45+
?>

logout.php

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
$_COOKIE['logged'] = 0;
4+
5+
?>

meganote.php

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?php
2+
3+
if(!isset($_COOKIE['logged']))
4+
{
5+
header("Location: signin.php");
6+
}
7+
else
8+
{
9+
if($_COOKIE['logged'] == 0)
10+
{
11+
header("Location: signin.php");
12+
}
13+
}
14+
15+
?>
16+
17+
<!DOCTYPE html>
18+
<html>
19+
<head>
20+
<title>Let\'s leave this empty for now</title>
21+
<link href="stylesheets/meganote.css" rel="stylesheet" type="text/CSS" />
22+
</head>
23+
<body>
24+
<div id="note" >
25+
Successfully logged in!<br>
26+
Redirecting in 3 seconds...
27+
</div>
28+
<script type="text/javascript" >
29+
30+
setInterval(function(){
31+
window.location = "player.php";
32+
}, 3000);
33+
34+
</script>
35+
</body>
36+
</html>

music/1.mp3

5.17 MB
Binary file not shown.

0 commit comments

Comments
 (0)