Error 'VALUES' (T_STRING) in php

-3

I have an error in the variables when trying to call the database and the following message appears:

Parse error: syntax error, unexpected 'VALUES' (T_STRING) in C: \ xampp \ htdocs \ Site \ formcadastro \ connection2.php on line 24

This is the error line:

$sql = mysql_query ("INSERT INTO cadastro ('idCad', 'Nome', 'Email', 'Senha', 'Confirmar', 'Telefone', 'Celular', 'Nascimento', 'Sexo', 'Bairro', 'Cidade', 'Estado')" 
VALUES ('$idCad', '$nome', '$email', '$senha', '$confirmar', '$telefone', '$celular', '$nascimento', '$sexo', '$bairro', '$cidade', '$estado');

How can I fix it?

    
asked by anonymous 07.06.2016 / 02:16

1 answer

0

You are closing the string with "before the word VALUES.

Test:

$sql = mysql_query("INSERT INTO cadastro ('idCad', 'Nome', 'Email', 'Senha', 'Confirmar', 'Telefone', 'Celular', 'Nascimento', 'Sexo', 'Bairro', 'Cidade', 'Estado') VALUES ('$idCad', '$nome', '$email', '$senha', '$confirmar', '$telefone', '$celular', '$nascimento', '$sexo', '$bairro', '$cidade', '$estado')";
    
07.06.2016 / 02:19