├── .DS_Store ├── .gitattributes ├── ImportOnlyTheSongs.sql ├── LICENSE ├── README.md ├── album.php ├── artist.php ├── artists.php ├── assets ├── .DS_Store ├── css │ ├── register.css │ └── style.css ├── images │ ├── .DS_Store │ ├── artwork │ │ ├── christmas.jpg │ │ ├── claire_de_lune.jpg │ │ ├── classical_piano_meditation.jpg │ │ ├── deeper_still.jpg │ │ ├── emmanuel.jpg │ │ ├── happy_holy_days.jpg │ │ ├── hope_for_the_holidays.jpg │ │ ├── running_track.jpg │ │ └── silent_night.jpg │ ├── bg.jpg │ ├── icons │ │ ├── .DS_Store │ │ ├── checkmark.png │ │ ├── icons8-santas_hat.png │ │ ├── logo.png │ │ ├── more.png │ │ ├── next.png │ │ ├── pause-green.png │ │ ├── pause.png │ │ ├── play-white.png │ │ ├── play.png │ │ ├── playlist.png │ │ ├── plus.png │ │ ├── previous.png │ │ ├── repeat-active.png │ │ ├── repeat.png │ │ ├── search.png │ │ ├── shuffle-active.png │ │ ├── shuffle.png │ │ ├── volume-mute.png │ │ └── volume.png │ └── profile-pics │ │ └── head_emerald.png ├── js │ ├── register.js │ └── script.js └── music │ ├── .DS_Store │ ├── angels_we_have_heard_on_high.mp3 │ ├── ave_maria.mp3 │ ├── canon_in_d.mp3 │ ├── deck_the_halls.mp3 │ ├── do_you_hear_what_i_hear.mp3 │ ├── hark_the_herald_angels_sing.mp3 │ ├── how_great_is_our_god.mp3 │ ├── it_came_upon_a_midnight_clear.mp3 │ ├── mary_did_you_know.mp3 │ ├── silent_night.mp3 │ └── unbreak_my_ heart.mp3 ├── browse.php ├── genre.php ├── includes ├── .DS_Store ├── classes │ ├── Account.php │ ├── Album.php │ ├── Artist.php │ ├── Constants.php │ ├── Playlist.php │ ├── Song.php │ └── User.php ├── config.php ├── footer.php ├── handlers │ ├── ajax │ │ ├── addToPlaylist.php │ │ ├── createPlaylist.php │ │ ├── deletePlaylist.php │ │ ├── getAlbumJson.php │ │ ├── getArtistJson.php │ │ ├── getSongJson.php │ │ ├── logout.php │ │ ├── removeFromPlaylist.php │ │ ├── updateEmail.php │ │ ├── updatePassword.php │ │ └── updatePlays.php │ ├── login-handler.php │ └── register-handler.php ├── header.php ├── includedFiles.php ├── navBarContainer.php └── nowPlayingBar.php ├── index.php ├── playlist.php ├── register.php ├── search.php ├── settings.php ├── songs.php ├── spotifyCreateWholeDatabaseSoFar copy.sql ├── updateDetails.php └── yourMusic.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/.gitattributes -------------------------------------------------------------------------------- /ImportOnlyTheSongs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/ImportOnlyTheSongs.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/README.md -------------------------------------------------------------------------------- /album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/album.php -------------------------------------------------------------------------------- /artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/artist.php -------------------------------------------------------------------------------- /artists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/artists.php -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/css/register.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/.DS_Store -------------------------------------------------------------------------------- /assets/images/artwork/christmas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/christmas.jpg -------------------------------------------------------------------------------- /assets/images/artwork/claire_de_lune.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/claire_de_lune.jpg -------------------------------------------------------------------------------- /assets/images/artwork/classical_piano_meditation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/classical_piano_meditation.jpg -------------------------------------------------------------------------------- /assets/images/artwork/deeper_still.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/deeper_still.jpg -------------------------------------------------------------------------------- /assets/images/artwork/emmanuel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/emmanuel.jpg -------------------------------------------------------------------------------- /assets/images/artwork/happy_holy_days.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/happy_holy_days.jpg -------------------------------------------------------------------------------- /assets/images/artwork/hope_for_the_holidays.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/hope_for_the_holidays.jpg -------------------------------------------------------------------------------- /assets/images/artwork/running_track.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/running_track.jpg -------------------------------------------------------------------------------- /assets/images/artwork/silent_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/artwork/silent_night.jpg -------------------------------------------------------------------------------- /assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/bg.jpg -------------------------------------------------------------------------------- /assets/images/icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/.DS_Store -------------------------------------------------------------------------------- /assets/images/icons/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/checkmark.png -------------------------------------------------------------------------------- /assets/images/icons/icons8-santas_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/icons8-santas_hat.png -------------------------------------------------------------------------------- /assets/images/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/logo.png -------------------------------------------------------------------------------- /assets/images/icons/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/more.png -------------------------------------------------------------------------------- /assets/images/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/next.png -------------------------------------------------------------------------------- /assets/images/icons/pause-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/pause-green.png -------------------------------------------------------------------------------- /assets/images/icons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/pause.png -------------------------------------------------------------------------------- /assets/images/icons/play-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/play-white.png -------------------------------------------------------------------------------- /assets/images/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/play.png -------------------------------------------------------------------------------- /assets/images/icons/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/playlist.png -------------------------------------------------------------------------------- /assets/images/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/plus.png -------------------------------------------------------------------------------- /assets/images/icons/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/previous.png -------------------------------------------------------------------------------- /assets/images/icons/repeat-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/repeat-active.png -------------------------------------------------------------------------------- /assets/images/icons/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/repeat.png -------------------------------------------------------------------------------- /assets/images/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/search.png -------------------------------------------------------------------------------- /assets/images/icons/shuffle-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/shuffle-active.png -------------------------------------------------------------------------------- /assets/images/icons/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/shuffle.png -------------------------------------------------------------------------------- /assets/images/icons/volume-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/volume-mute.png -------------------------------------------------------------------------------- /assets/images/icons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/icons/volume.png -------------------------------------------------------------------------------- /assets/images/profile-pics/head_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/images/profile-pics/head_emerald.png -------------------------------------------------------------------------------- /assets/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/js/register.js -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /assets/music/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/.DS_Store -------------------------------------------------------------------------------- /assets/music/angels_we_have_heard_on_high.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/angels_we_have_heard_on_high.mp3 -------------------------------------------------------------------------------- /assets/music/ave_maria.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/ave_maria.mp3 -------------------------------------------------------------------------------- /assets/music/canon_in_d.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/canon_in_d.mp3 -------------------------------------------------------------------------------- /assets/music/deck_the_halls.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/deck_the_halls.mp3 -------------------------------------------------------------------------------- /assets/music/do_you_hear_what_i_hear.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/do_you_hear_what_i_hear.mp3 -------------------------------------------------------------------------------- /assets/music/hark_the_herald_angels_sing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/hark_the_herald_angels_sing.mp3 -------------------------------------------------------------------------------- /assets/music/how_great_is_our_god.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/how_great_is_our_god.mp3 -------------------------------------------------------------------------------- /assets/music/it_came_upon_a_midnight_clear.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/it_came_upon_a_midnight_clear.mp3 -------------------------------------------------------------------------------- /assets/music/mary_did_you_know.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/mary_did_you_know.mp3 -------------------------------------------------------------------------------- /assets/music/silent_night.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/silent_night.mp3 -------------------------------------------------------------------------------- /assets/music/unbreak_my_ heart.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/assets/music/unbreak_my_ heart.mp3 -------------------------------------------------------------------------------- /browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/browse.php -------------------------------------------------------------------------------- /genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/genre.php -------------------------------------------------------------------------------- /includes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/.DS_Store -------------------------------------------------------------------------------- /includes/classes/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/classes/Account.php -------------------------------------------------------------------------------- /includes/classes/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/classes/Album.php -------------------------------------------------------------------------------- /includes/classes/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/classes/Artist.php -------------------------------------------------------------------------------- /includes/classes/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/classes/Constants.php -------------------------------------------------------------------------------- /includes/classes/Playlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/classes/Playlist.php -------------------------------------------------------------------------------- /includes/classes/Song.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/classes/Song.php -------------------------------------------------------------------------------- /includes/classes/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/classes/User.php -------------------------------------------------------------------------------- /includes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/config.php -------------------------------------------------------------------------------- /includes/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/footer.php -------------------------------------------------------------------------------- /includes/handlers/ajax/addToPlaylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/addToPlaylist.php -------------------------------------------------------------------------------- /includes/handlers/ajax/createPlaylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/createPlaylist.php -------------------------------------------------------------------------------- /includes/handlers/ajax/deletePlaylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/deletePlaylist.php -------------------------------------------------------------------------------- /includes/handlers/ajax/getAlbumJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/getAlbumJson.php -------------------------------------------------------------------------------- /includes/handlers/ajax/getArtistJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/getArtistJson.php -------------------------------------------------------------------------------- /includes/handlers/ajax/getSongJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/getSongJson.php -------------------------------------------------------------------------------- /includes/handlers/ajax/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/logout.php -------------------------------------------------------------------------------- /includes/handlers/ajax/removeFromPlaylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/removeFromPlaylist.php -------------------------------------------------------------------------------- /includes/handlers/ajax/updateEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/updateEmail.php -------------------------------------------------------------------------------- /includes/handlers/ajax/updatePassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/updatePassword.php -------------------------------------------------------------------------------- /includes/handlers/ajax/updatePlays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/ajax/updatePlays.php -------------------------------------------------------------------------------- /includes/handlers/login-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/login-handler.php -------------------------------------------------------------------------------- /includes/handlers/register-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/handlers/register-handler.php -------------------------------------------------------------------------------- /includes/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/header.php -------------------------------------------------------------------------------- /includes/includedFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/includedFiles.php -------------------------------------------------------------------------------- /includes/navBarContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/navBarContainer.php -------------------------------------------------------------------------------- /includes/nowPlayingBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/includes/nowPlayingBar.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/index.php -------------------------------------------------------------------------------- /playlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/playlist.php -------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/register.php -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/search.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/settings.php -------------------------------------------------------------------------------- /songs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/songs.php -------------------------------------------------------------------------------- /spotifyCreateWholeDatabaseSoFar copy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/spotifyCreateWholeDatabaseSoFar copy.sql -------------------------------------------------------------------------------- /updateDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/updateDetails.php -------------------------------------------------------------------------------- /yourMusic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enyu0226/Spotify-Clone/HEAD/yourMusic.php --------------------------------------------------------------------------------