0

我正在用 Dreamweaver 做一个项目,但我的 select 语句遇到了麻烦。我有这个

 SELECT *
    FROM client, `statement`
    WHERE client.client_id = `statement`.client_id

当我执行此操作时,它会选择数据库中的每个人。所以我想在这个查询中添加另一个 WHERE 语句,这次将 client.username 与会话变量“MM_Username”进行比较。

所以我在看这样的东西

SELECT *
    FROM client, `statement`
    WHERE client.client_id = `statement`.client_id  AND WHERE client.username = '$_SESSION['MM_Username']'

会话PHP代码如下

<?php
if (!isset($_SESSION)) {
  session_start();
}
$MM_authorizedUsers = "";
$MM_donotCheckaccess = "true";

// *** Restrict Access To Page: Grant or deny access to this page
function 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 = "myflog.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($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0) 
  $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
  $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
  header("Location: ". $MM_restrictGoTo); 
  exit;
}
?>
4

2 回答 2

0

SELECT * FROM client, statementWHERE client.client_id = statement.client_id AND client.username = '$_SESSION['MM_Username']';

或 $user_name=$_SESSION['MM_Username']; SELECT * FROM client c, statement s WHERE c.client_id = s.client_id AND c.username = '$user_name';

试试这个查询

于 2013-01-17T12:42:05.673 回答
0

不应该有另一个WHERE;您将您的条件与AND

WHERE client.client_id = `statement`.client_id AND client.username = '$_SESSION['MM_Username']'

有关详细信息,请参阅您所使用的 SQL 引擎的 SQL 语法定义,以了解SELECT查询的语法。

于 2013-01-17T09:43:24.093 回答