Yep, your code is all wrong
mysql_query() is a function call, not a variable. So doing mysql_query.“‘1’”; will not append ‘1’ to your query, it’ll just cause an error. (Even if it were a variable, you concatinate strings with the .= operator)
You need to assemble a query string that you then pass into the [fphp]mysql_query[/fphp] function.
I assume the userid, clubid, matchid and result fields in your DB are all integer types, so you shouldn’t use single quotes around the values in the query.
(You should of course ensure the values are cast as integers too!)