Estou construindo uma página de cadastro com apenas 3 itens, estou a dois dias tentando resolver o problemas e já estou irritado, dá um erro e não cadastra no banco de dados MySql
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 '' at line 1
Pergunta
Guest HENRIQUE SANTANA
:blush: POR FAVOR ME AJUDEM!!!!!!!!!!!!!!!!!1
Olá Amigos,
Estou construindo uma página de cadastro com apenas 3 itens, estou a dois dias tentando resolver o problemas e já estou irritado, dá um erro e não cadastra no banco de dados MySql
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 '' at line 1
SEGUE O CÓDIGO:
<?php require_once('../Connections/portaldosaber.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO portal_usuarios (usu_nome, usu_email, usu_senha) VALUES (%s, %s, nd5(%s)",
GetSQLValueString($_POST['usu_nome'], "text"),
GetSQLValueString($_POST['usu_email'], "text"),
GetSQLValueString($_POST['usu_senha'], "text"));
mysql_select_db($database_portaldosaber, $portaldosaber);
$Result1 = mysql_query($insertSQL, $portaldosaber) or die(mysql_error());
$insertGoTo = "sucesso.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO portal_usuarios (usu_nome, usu_email, usu_senha) VALUES (%s, %s, nd5(%s)",
GetSQLValueString($_POST['usu_nome'], "text"),
GetSQLValueString($_POST['usu_email'], "text"),
GetSQLValueString($_POST['usu_senha'], "text"));
mysql_select_db($database_portaldosaber, $portaldosaber);
$Result1 = mysql_query($insertSQL, $portaldosaber) or die(mysql_error());
$insertGoTo = "sucesso.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
Link para o comentário
Compartilhar em outros sites
6 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.