Heya!
Iäm trying to do such a simple(?) thing as insert some data into a mysql table via a link that looks like this:
<a href="votes.php?totalvotes=2&score=10&movie=42">10</a>
and the vote.php looks like this:
<?php
require_once 'Connections/mysql_connect.php');
mysql_select_db($database_mysql_connect, $mysql_connect);
mysql_query ("INSERT INTO reviews ($votescore, $votes)
VALUES ('$score', '$totalvotes') WHERE movieid=$movie;
");
I'm so lost and a total beginner so please help me...