Problem with insert statement.
Can someone tell me what is wrong with this code? I'm getting a too few parameters expected 4 error.
<cfquery datasource="poll" name="registration">
INSERT INTO Members(login,password,first_name,last_name,email,phone,address)
VALUES ("#form.username#","#pw#","#form.firstname#","#form.lastname#","#form.email#","#form.phone#","#form.address#")
</cfquery>
All database fields are text even for the phone number and password.
