- Notifications
You must be signed in to change notification settings - Fork99
thealoneprogrammer/Musical-World
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
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
CREATETRIGGER `IncrementCount` AFTER INSERTON`upload_albums` FOR EACH ROWupdate usersetuser.contributions=user.contributions+1wherenew.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 SQLINSERT 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 Passwordusername:admin@gmail.compassword:sujith123Note: do not forget to add your email credentials validate.php and activate_email.php file so as to send email notifications
Some Glimps....
About
DBMS Mini Project that basically designed for online music player
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.


