Can someone please tell me what is wrong with this statement?

前端 未结 4 687
别跟我提以往
别跟我提以往 2021-01-24 17:07

I am using this to insert a few things into my table and it keeps giving me this error:

Microsoft VBScript compilation error \'800a03ee\'
Expected \')\'
/thanks.asp,          


        
4条回答
  •  星月不相逢
    2021-01-24 17:19

    The missing ampersands and quotes may be the least of your problems.

    It does not look like you are cleaning the strings in any way. The strings could contain single quotes that are not escaped. You are open to SQL injection because you are not using parameters.

提交回复
热议问题