Hi, i want to insert some values into a table by getting values using post method. here is the script but it gives this error message;
err message 😛arse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING on line 17
line 17:
mysql_query("insert into users(userid,name,email) values(null,'$POST['name']','$POST['email']')");
what can i do?