Thanks. This problem is solved now. But here comes another... mySQL says, when inserting a row: Query was empty.
$sql = mysql_query( \"INSERT INTO reviews ( id, pid, author, date, rating, review ) VALUES ( \'\', $pid, $author, CURDATE(), $rating, $review )\" );
If I add \' \' just as you said, then mySQL says: You have an error in your SQL syntax near \'1\' at line 1
Any ideas?
BTW, does it really pass on the content of the form fields, just by using the same var\'s name as in the name of the HTML fields? Maybe I have to declare the vars first... if yes, how?