lol but what is the error here? should work? guess not 
(bare with me i'm nopt that good at PHP but i did everything according to a tutorial and my host has the latest soft installed)
it all goes well till i call the mysql_query

<?
$Action = $_POST['Action'];
$UserId = $_POST['UserID'];
$Payment = $_POST['Payment'];
$PaymentInfo = $_POST['PaymentInfo'];
$link = mysql_connect("localhost", "username", "secret"
or die("Failed to Connect: " . mysql_error());mysql_select_db("databasename", $link) or die("Failed to select DataBase: " . mysql_error());
$query = "INSERT INTO `Users` ( `UserNumber` , `User_Id` , `Subscription` , `PaymentInfo` ) VALUES ( NULL, 'test', '100', 'NOK'))";
mysql_query($query) or die("Failed to add record: " . mysql_error());
mysql_close($link);
?>
keep getting this

---
Failed to add record: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
---
while the error only appears when i run the mysql_query so why does it say line 1? and what the error? the query is created with myphpadmin so i gues that cant be the error? right?
thanks.

