Need help with vote system

Hey,

i am looking for some help creating a php script that allows users to vote up (only up) a certain item.

I have created a mysql column “vote” and presume I need to add 1 every time some clicks on the button. but i cant quite get the script happening… any ideas???

This should get you on your way. :slight_smile:

<?php
#vote.php?id=5
$res = mysql_query(sprintf(
  'UPDATE table SET vote = vote + 1 WHERE table.id = &#37;d',
  $_GET['id']
));
?>