>백엔드 개발 >PHP 튜토리얼 >php总是报错,大家帮小弟我看下代码

php总是报错,大家帮小弟我看下代码

WBOY
WBOY원래의
2016-06-13 10:29:021076검색

php总是报错,大家帮我看下代码

if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION   $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_test, $test);
$query_test = "SELECT * FROM test";
$test = mysql_query($query_test, $test) or die(mysql_error());
$row_test = mysql_fetch_assoc($test);
$totalRows_test = mysql_num_rows($test);
?>


 


 
 
 


 


 
 
 


 


 
 
 


 


 
 




 



 
 
 
 
 
  $result1 = mysql_query("SELECT * FROM test where id   while($row1=mysql_fetch_array($result1))
  {
$id=trim($row1[id]);
$name=trim($row1[name]);
$pass=trim($row1[pass]);
  echo
  "
 

 
 
 
  ";
  }
  
  ?>
id name pass
$id $name $pass

 


mysql_free_result($test);
?>[code=PHP][/code]
=============================
报错:
Notice: Use of undefined constant id - assumed 'id' in D:\xampp\htdocs\vest\index.php on line 68

Notice: Use of undefined constant name - assumed 'name' in D:\xampp\htdocs\vest\index.php on line 69

Notice: Use of undefined constant pass - assumed 'pass' in D:\xampp\htdocs\vest\index.php on line 70

68、69、70这三行是
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.