I have a voting script. It works well.
But I have a little problem. I don't want people to reach the vote submission page (the page where the vote is submitted to the db) directly. I want them to reach it only through a specific link.
My voting links:
<form>
<INPUT id="voteup1" type="BUTTON" VALUE="Vote it up!" ONCLICK="window.location.href='rankup.php?rankid=<? echo $id1; ?>'">
<INPUT id="votedown1" type="BUTTON" VALUE="Vote it down!" ONCLICK="window.location.href='rank.php?rankid=<? echo $id1; ?>'">
</form>
$id1 is for defining the page that has been voted by the user. (It is important when the vote is added to the database)
I don't want people to reach rankup.php and rank.php directly. How could I prevent this?