0

我正在尝试将 mysql 数据库连接到我在 php 文件中的表。我已经设置了测试服务器来查找服务器文件夹

H:\PHP\htdocs\EDMuncovered\

和网址

http://localhost/EDMuncovered/

我还设置了一个“成功连接”的数据库,但是当我在 DreamWeaver 上的实时视图中查看我的页面时,它会显示以下内容:

Fatal error: Can't use function return value in write context in H:\PHP\htdocs\EDMuncovered\PHP\htdocs\EDMuncovered\TMPqntvw2.php on line 36

当在我的浏览器中启动时,它只是在代码视图中读取 DreamWeaver 中编写的文件,没有任何样式或基础知识,只有代码。

我查看了该文件的第 36 行,看看我是否知道是什么导致了问题,但下面是下面的内容,据我所知,我不知道要纠正什么才能使其正常工作:

$edmuncovered = mysql_query($query_edmuncovered, $edmuncovered) or die(mysql_error());

出于某种原因,每次我尝试在实时视图中查看时,它都会在我的服务器文件夹中自动创建一个单独的子文件夹,该文件夹的名称和路径与您在上面看到的完全相同,然后它会在其中转储一个 TMP 文件,这是一个确切的我的文件的副本。我不知道为什么,我觉得这是问题所在,但无论我改变什么,它每次都会产生它。

有什么想法吗?

编辑:: 这是错误引用的代码行 (36) 之前和之后的几行;

<?php require_once('../../../Connections/edmuncovered.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = 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 = ($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;
}
}

mysql_select_db($database_edmuncovered, $edmuncovered);
$query_edmuncovered = "SELECT * FROM news";
$edmuncovered = mysql_query($query_edmuncovered, $edmuncovered) or die(mysql_error());
$row_edmuncovered = mysql_fetch_assoc($edmuncovered);
$totalRows_edmuncovered = mysql_num_rows($edmuncovered);
?>
4

1 回答 1

1

你不应该把你的htdocs放到你的XAMPP文件夹中吗?

于 2013-05-02T01:17:50.140 回答