webmaniacal
Technical User
Does anyone know where I can find out how to add a "rate this song" to my site? I have been researching this and can't seem to find it. Thank you for any direction.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
update songtable set rating = rating+1
$vote = (int) trim($_POST['rate']);
mysql_query("Update songtable set rating=rating+$vote");