Jump to content

want to count hits on play button


realcoder

Recommended Posts

m just making a little script related to music portal

infact want that when everybody click on songs play button separately i can count the click of every songs in daabase because want to fetch most played tracks so through this i can show eaily most played tracks

www.hostrox.com/proj

 

please help me that how i count clicks on play button of every song separetly...

& give me more suggestions how to improve it more thanks :)

Link to comment
Share on other sites

It seems all of your "Play" links go tot he same page and have an optional parameter to identify the track to be played. Here are two examples:

http://www.hostrox.com/proj/songs.php?movie=Movii1#
http://www.hostrox.com/proj/songs.php?movie=Film123#

 

I assume this is all in a adatabase. So, one option would be to have a column in the songs table for "times_played" or somethign similar. Then, just add some code on the songs.php page to increment that value by one whenever the page is called. If the value of movie ont he query string is the unique ID for the record int he database, then the code might look something like this:

$song_id = mysql_real_escape_string($_GET['movie']);
$query = "UPDATE songs SET times_played = times_played + 1 WHERE song_id = $song_id";
$result = mysql_query($query);

Link to comment
Share on other sites

so this will count by movie name how many times movie page come in used am i right...so mean becoz of my url i can't cou well i think when we click on play open a new windows with song tiltle & url from that i can count how many time a single song played if the same trick i use there in play.php what u say ?am i right na :P

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.