Hi,
I have a client that is going to pass me form data for insertion into a dB table. The problem is, although many of the form fields are static, they will also pass several dynamic option fields in the process. All of the option field names are prefaced with option_ so I need to understand how I can identify the fields that are options and insert them into the options MS SQL dB column with any type of delimiter.
So, they will send static info (firstname, lastname, address etc) and also dynamic fields (option_seating, option_engine, option_extcolor etc).
I want my insert to be something like:
Insert into Leads (firstname, lastname, address, options)
Values('#firstname#', '#lastname#', '#address#', '#optionslist#')
Please let me know if I am not clear.
Thanks
I have a client that is going to pass me form data for insertion into a dB table. The problem is, although many of the form fields are static, they will also pass several dynamic option fields in the process. All of the option field names are prefaced with option_ so I need to understand how I can identify the fields that are options and insert them into the options MS SQL dB column with any type of delimiter.
So, they will send static info (firstname, lastname, address etc) and also dynamic fields (option_seating, option_engine, option_extcolor etc).
I want my insert to be something like:
Insert into Leads (firstname, lastname, address, options)
Values('#firstname#', '#lastname#', '#address#', '#optionslist#')
Please let me know if I am not clear.
Thanks