All Projects → thealoneprogrammer → Musical-World

thealoneprogrammer / Musical-World

Licence: other
DBMS Mini Project that basically designed for online music player

Programming Languages

PHP
23972 projects - #3 most used programming language
CSS
56736 projects
hack
652 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Musical-World

FIFA-18-Management-System
This repository contains the whole project. This project was intended to exhibit as a DBMS project but it can also act as a web development project as it includes complete front end and back end.
Stars: ✭ 42 (-28.81%)
Mutual labels:  dbms, database-management, dbms-project
Hostel-Management-System
A system built for hostel room allocation for our College(NIT Calicut) as a part of DBMS Course.
Stars: ✭ 90 (+52.54%)
Mutual labels:  database-management, php-project, dbms-project
mysql-user-db-creator-bash-script
Script to create a mysql database, user and password with just a command
Stars: ✭ 24 (-59.32%)
Mutual labels:  mysql-database, database-management
Reservation-System
Airline Reservation System is an online Airline Ticket Reservation Application built using Windows Forms, C#, MS SQL Server.
Stars: ✭ 18 (-69.49%)
Mutual labels:  dbms, dbms-project
SourceRadio
Stream music from YouTube while playing games on Steam
Stars: ✭ 10 (-83.05%)
Mutual labels:  music-player
HypnosMusicPlayer
A Lightweight, Clean, and Powerful Music Player and Library.
Stars: ✭ 21 (-64.41%)
Mutual labels:  music-player
amdb-proxy
A proxy to access SQL-based database for FISCO BCOS node
Stars: ✭ 16 (-72.88%)
Mutual labels:  databse
Vudit
A file viewer for Android
Stars: ✭ 40 (-32.2%)
Mutual labels:  music-player
Laraue.EfCoreTriggers
Library for writing triggers in C# using package EFCore
Stars: ✭ 51 (-13.56%)
Mutual labels:  triggers
violin
🎵 Minimalistic music player for desktop devices.
Stars: ✭ 40 (-32.2%)
Mutual labels:  music-player
quickstep
Quickstep project
Stars: ✭ 22 (-62.71%)
Mutual labels:  database-management
bitbucket-push-and-pull-request-plugin
Plugin for Jenkins v2.138.2 or later, that triggers job builds on Bitbucket's push and pull request events.
Stars: ✭ 47 (-20.34%)
Mutual labels:  triggers
SocyMusic
SocyMusic is an open-source Android music player written in Java with the aim of creating an easy-to-use app for exchanging and listening to top-quality music. Help us create it!
Stars: ✭ 22 (-62.71%)
Mutual labels:  music-player
cloud-music-mobile
This is a music player
Stars: ✭ 22 (-62.71%)
Mutual labels:  music-player
MusicUnionSearch
音乐全网搜索
Stars: ✭ 20 (-66.1%)
Mutual labels:  music-player
deplayer
Decentralized mediaplayer which runs entirely in the browser.
Stars: ✭ 14 (-76.27%)
Mutual labels:  music-player
sbotify
your personal bot that plays spotify music
Stars: ✭ 25 (-57.63%)
Mutual labels:  music-player
spotify-terminal
Terminal application to play/control Spotify.
Stars: ✭ 61 (+3.39%)
Mutual labels:  music-player
Jericho-Player
LightWeight Framework for discord.js v13 Music Bots and Radio Bots with fast moderation with commands and no memory leak.
Stars: ✭ 19 (-67.8%)
Mutual labels:  music-player
sqlite-gui
Lightweight SQLite editor for Windows
Stars: ✭ 151 (+155.93%)
Mutual labels:  database-management

Musical-World

Musical World is a web application that basically alow user to ulpoad their own songs and can listen to already uploaded songs and can add their song into favorite list. This project contains admin side as well as user side. User has to first register to the portal before uploading songs. The account verification mechanism have been included in the project to verify user authentication.

create database named "musical_world" at back-end and import the code tables.sql file inside databse folder to get access to database

This is basically my DBMS mini project. The site basically includes triggers and procedures. So before running the application create a trigger and a procedure at back-end(xampp or wamp any application).

Code for triggers and procedure are given below.

Trigger code

trigger to keep track of user contributions

CREATE TRIGGER `IncrementCount` AFTER INSERT ON `upload_albums`
 FOR EACH ROW update user set user.contributions = user.contributions + 1 where new.singer_id = user.user_id

procedure code

stored procedure to upload songs

DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `uploadsongs`(IN `singer_id` INT(11), IN `song_name` VARCHAR(255), IN `song_format` VARCHAR(255), IN `singer_name` VARCHAR(255), IN `song_image` VARCHAR(255), IN `audio_file` VARCHAR(255))
   NO SQL
INSERT INTO upload_albums(`singer_id`,`song_name`,`song_format`,`singer_name`,`song_image`,`audio_file`) VALUES(singer_id,song_name,song_format,singer_name,song_image,audio_file)$$
DELIMITER ;
Admin Panel Username and Password
username:[email protected]
password:sujith123

Note: do not forget to add your email credentials validate.php and activate_email.php file so as to send email notifications

Some Glimps....

screenshot 56

screenshot 57

screenshot 61

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].