Hi All,
I am trying to figure out coldfusion. I previously used php mysql website development, but my friend decided to use the coldfusion setup and now is needing help. Now I keep getting the error "Error: Element Undefined in Form".
Any help is appreciated!
I am trying to figure out coldfusion. I previously used php mysql website development, but my friend decided to use the coldfusion setup and now is needing help. Now I keep getting the error "Error: Element Undefined in Form".
Code:
<cfquery name="auto" datasource="mysqlcf_auto" dbname="auto" username="auto" password="pswd1">
INSERT INTO Customer
(FName,MName,LName,Phone,Cell,Email,Location)
VALUES
('#form.PURFirstName#', '#PURMiddleName#', '#PURLastName#', '#PURPhoneNumber#', '#PURCellNumber#', '#PUREmail#', '#PURContactLocation#')
</cfquery>
Comment