Olá galera, estou começando a mexer com php e mysql e tipo, fiz um script aki, mas esta dando um erro: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '@gmail.com, senha, foto.JPG, macho, cidade, estado, sim)' at line 2 não faço a minima ideia do que pode ser, alguém da uma ajuda? Codigo: <?php require_once('Connections/usercad.php'); ?>
<?php
$nome = $_POST['nome'];
$email = $_POST['email'];
$senha = $_POST['senha'];
$foto = $_FILES['foto']['name'];
$sexo = $_POST['sexo'];
$cidade = $_POST['cidade'];
$estado = $_POST['estado'];
$banda = $_POST['banda'];
$tmp_imagem = $_FILES['foto']['tmp_name'];
$destino = "user/".$foto;
if(isset($_POST['enviar'])){
if(move_uploaded_file($tmp_imagem, $destino)){
$cadastro = mysql_query("INSERT INTO clientes (nome, email, senha, foto, sexto, cidade, estado, banda)
VALUES ($nome, $email, $senha, $foto, $sexo, $cidade, $estado, $banda)") or die (mysql_error());
print"<META HTTP-EQUIV-REFRESM CONTENT='O; URL=CADASTRAR.PHP'>
<script type=\"text/javascript\">
alert(\"Cadastrado Com Sucesso!!!\");
</script>";
}else{
print"<META HTTP-EQUIV-REFRESM CONTENT='O; URL=CADASTRAR.PHP'>
<script type=\"text/javascript\">
alert(\"Falha ao enviar imagem\");
</script>";
}
} quando abre essa pagina, aparece esses erros: Notice: Undefined index: nome in C:\wamp\www\zonacariri\cadastrando.php on line 5 Notice: Undefined index: email in C:\wamp\www\zonacariri\cadastrando.php on line 6 Notice: Undefined index: senha in C:\wamp\www\zonacariri\cadastrando.php on line 7 Notice: Undefined index: foto in C:\wamp\www\zonacariri\cadastrando.php on line 8 Notice: Undefined index: sexo in C:\wamp\www\zonacariri\cadastrando.php on line 9 Notice: Undefined index: cidade in C:\wamp\www\zonacariri\cadastrando.php on line 10 Notice: Undefined index: estado in C:\wamp\www\zonacariri\cadastrando.php on line 11 Notice: Undefined index: banda in C:\wamp\www\zonacariri\cadastrando.php on line 12 Notice: Undefined index: foto in C:\wamp\www\zonacariri\cadastrando.php on line 13 Brigadaum galera!