SQL syntax errors when using php echo $_SERVER['PHP_SELF'];

tsuki_eienno

New Member
I'm trying to submit a page onto itself by using php echo $_SERVER['PHP_SELF']; but keep receiving the following error: 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....There are different forms on the page and I am having the same problem with all of them.What could be the source of the problem?\[code\] <?phprequire_once('Connections/speedycms.php'); $client_id = mysql_real_escape_string($_GET['id']); if (!isset($_SESSION)) { session_start();}$MM_authorizedUsers = "";$MM_donotCheckaccess = "true";// *** Restrict Access To Page: Grant or deny access to this pagefunction isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) { // For security, start by assuming the visitor is NOT authorized. $isValid = False; // When a visitor has logged into this site, the Session variable MM_Username set equal to their username. // Therefore, we know that a user is NOT logged in if that Session variable is blank. if (!empty($UserName)) { // Besides being logged in, you may restrict access to only certain users based on an ID established when they login. // Parse the strings into arrays. $arrUsers = Explode(",", $strUsers); $arrGroups = Explode(",", $strGroups); if (in_array($UserName, $arrUsers)) { $isValid = true; } // Or, you may restrict access to only certain users based on their username. if (in_array($UserGroup, $arrGroups)) { $isValid = true; } if (($strUsers == "") && true) { $isValid = true; } } return $isValid; }$MM_restrictGoTo = "login.php";if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) { $MM_qsChar = "?"; $MM_referrer = $_SERVER['PHP_SELF']; if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&"; if (isset($QUERY_STRING) && strlen($QUERY_STRING) > 0) $MM_referrer .= "?" . $QUERY_STRING; $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer); header("Location: ". $MM_restrictGoTo); exit;}if (!function_exists("GetSQLValueString")) {function GetSQLValueString($theValue, $theType, $theDefinedValuehttp://stackoverflow.com/questions/1980902/= "", $theNotDefinedValuehttp://stackoverflow.com/questions/1980902/= "") { if (PHP_VERSION < 6) { $theValue = http://stackoverflow.com/questions/1980902/get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue; } $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue); switch ($theType) { case "text": $theValue = http://stackoverflow.com/questions/1980902/($theValue !="") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": $theValue = http://stackoverflow.com/questions/1980902/($theValue !="") ? intval($theValue) : "NULL"; break; case "double": $theValue = http://stackoverflow.com/questions/1980902/($theValue !="") ? doubleval($theValue) : "NULL"; break; case "date": $theValue = http://stackoverflow.com/questions/1980902/($theValue !="") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = http://stackoverflow.com/questions/1980902/($theValue !="") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue;}}mysql_select_db($database_speedycms, $speedycms);$query_caseStatus = "SELECT progress FROM tbl_accident WHERE id=$client_id";$caseStatus = mysql_query($query_caseStatus, $speedycms) or die(mysql_error());$row_caseStatus = mysql_fetch_assoc($caseStatus);$totalRows_caseStatus = mysql_num_rows($caseStatus);mysql_select_db($database_speedycms, $speedycms);$query_retrieveSolicitor = "SELECT * FROM tbl_solicitors";$retrieveSolicitor = mysql_query($query_retrieveSolicitor, $speedycms) or die(mysql_error());$row_retrieveSolicitor = mysql_fetch_assoc($retrieveSolicitor);$totalRows_retrieveSolicitor = mysql_num_rows($retrieveSolicitor);mysql_select_db($database_speedycms, $speedycms);$query_currentSolicitor = "SELECT currentSolicitor FROM tbl_accident WHERE id=$client_id";$currentSolicitor = mysql_query($query_currentSolicitor, $speedycms) or die(mysql_error());$row_currentSolicitor = mysql_fetch_assoc($currentSolicitor);$totalRows_currentSolicitor = mysql_num_rows($currentSolicitor);?>\[/code\]
 
Top