How to create an online radio using jQuery and jPlayer

Asked By 0 points N/A Posted on -
qa-featured

How to create an online radio using jQuery and jPlayer

SHARE
Best Answer by lee hung
Best Answer
Best Answer
Answered By 75 points N/A #84965

How to create an online radio using jQuery and jPlayer

qa-featured

Light the computer and the monitor: first, you need to turn on the computer and the monitor. Accent that the team(equipment) of warming before clicking in the Internet icon.

Click in the Internet icon: with the warmed team(equipment), click in the Internet icon. If you have a marked program of favorite on-line radio, click in this web site linkage to be sent to the program of on-line radio to that he(she) would like listening. Linkage in a circle to the left is a program of radio to be listened.

Search of programs of previous or current radio. Now, it displace down radio to Show web site page for programs of radio that wants to send by e-mail its family or friends.

To copy, ledge, programs of radio. When it finds the programs of radio that he(she) wants to send by e-mail, left clicks in the program of radio, of left to right, until he(she) stands out.

Next, click right in some place on the program of highlighted radio and the mouse moves up to the word it copies. Once one emphasizes the program, it will be copied / kept in the portapapeles of the team(equipment).

E-mail of open Internet: With programs of on-line radio in the port apapeles of the team(equipment), click in the e-mail tie(entail) of composing, write e-mail or messages of e-mail where there will be sent the program or programs of radio.

To give radio programs in e-mail. In the body of the e-mail, click with the mouse. Next, the mouse moves up to the word pasta and the programs of radio that are sitting in the port apapeles of the team(equipment) it will stick in the body of the e-mail. Finally, touch the button of sending and the programs of radio that it gives in the body of the e-mail there will be sent your family or friends.

If he(she) wishes it, to do a mail of test first to yourself, to open the e-mail and clicks in the program of radio that buttons include that you and its family or friends can listen to the program of radio of its e-mail.

This is quite easy to do(do) and there was it was me who did not try, he(she) would never have known that it was going to work.

Answered By 590495 points N/A #84966

How to create an online radio using jQuery and jPlayer

qa-featured

Having an online radio is great because you can listen to different music and possibly hear one of your favorite songs. And if you want to create your own online radio, there is a way on how you can do it using jQuery and jPlayer with JavaScript, PHP, and a MySQL database.

To do this, you need to create the database first. You can name it as radio, for example. After this, the next to do is to create a table with 4 fields for the id, mp3 URL, the artist name, and for the song title. You can name the table as songs. Here is the SQL code for the table.

CREATE TABLE `songs` (

`song_id` int(11) NOT NULL AUTO_INCREMENT,

`url` varchar(500) NOT NULL,

`artist` varchar(250) NOT NULL,

`title` varchar(250) NOT NULL,

PRIMARY KEY (`song_id`)

) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

To see the complete set of instructions, do visit How to create online radio.

Related Questions