所以我试图在我最近在我的WAMP服务器版本2.5上设置的网站上回显我的一个数据库中的每一行用户。我可能是错的,但我已经用谷歌搜索并搜索了这个网站的帖子......我不认为这个问题就像这个问题一样。
在我通过以下教程/练习使用PHP的实践中,我当然发现MySQL现在更喜欢PDO或MySQLi,所以我决定尝试使用MySQLi。
奇怪的是,我已经包含了配置MySQL连接的PHP文件,并且我知道连接变量被正确调用,因为我甚至打印出了查询结果,变量被分配给:
mysqli_result Object ( [current_field] => 0 [field_count] => 3 [lengths] => [num_rows] => 1 [type] => 0 )
以上是我使用时的输出:
print_r($db_con->query("SELECT * FROM users"));
然而,当我尝试将结果分配给变量(如$ user_rs)并打印该变量的值时,我得到"注意:未定义的变量:C:\ wamp \ www \ index.php中的user_rs在第58行。"
这是我的档案。
dbconfig.php:
<?php
$db_con= new mysqli("localhost","root","abc123", "OTonGadgetHub");
if($db_con->connect_errno){
echo $db_con->connect_error;
}
?>
的index.php:
<?php session_start();
include ("dbconfig.php"); ?>
<html>
<head>
<title>My Webpage</title>
<link rel = "stylesheet" type = "text/css" href = "site.css" />
<link rel="shortcut icon" href="index.html?img=favicon" type="image/ico" />
<script>
function validatingForm(){
var x;
var y;
x = document.getElementById('nameCheck').value;
y = document.getElementById('password').value;
if(x !="" && y !=""){
return true;
}
else if(x =="" && y == ""){
document.getElementById('errorMsg').innerHTML='<font color="red">(required) Name:</font>';
document.getElementById('errorPass').innerHTML='<font color="red">(required) Password:</font>';
return false;
}
else if(x =="" && y!=""){
document.getElementById('errorMsg').innerHTML='<font color="red">(required) Name:</font>';
document.getElementById('errorPass').innerHTML='<font color="blue">Password:</font>';
return false;
}
else if(y =="" && x!=""){
document.getElementById('errorPass').innerHTML='<font color="red">(required) Password:</font>';
document.getElementById('errorMsg').innerHTML='<font color="blue">Name:</font>';
return false;
}
}
</script>
</head>
<body>
<?php include("header.php"); ?>
<?php
if (isset($_SESSION['user']))
echo "<p class ='welcome' id='greeting'> Hi, ". $_SESSION['user'] . "! Welcome to the site!</p>";
else
echo "<p class ='welcome' id='greeting'> Please Login:</p>
<form action='welcome.php' method='post'>
<center><b id = 'errorMsg'>Name:</b>
<input type='text' id='nameCheck' name = 'username' /></center>
<br />
<center><b id='errorPass'>Password:</b> <input type='text' id ='password' name = 'password'/></center>
<br /><br />
<center><input type='submit' value='Log In' onClick='return validatingForm()'/></center>
</form>";
?>
<?php
if (isset($_SESSION['user']))
$user_rs = $db_con->query("SELECT * FROM users");
print_r($db_con->query("SELECT * FROM users"));
print_r($user_rs);
echo "<center><h1> User List:</h1>
<table border='1'>
<tr>
<td><b>User</b></td>
<td><b>Login password</b></td>
</tr>
<tr>";
while($record = $user_rs->fetch_object()){
echo "<td>" . $record['id'] . "</td>";
echo "<td>" . $record['username'] . "</td>";
echo "</tr>";
}
echo"</table></center>";
?>
<?php if (isset($_SESSION['user']))
echo "<center><a href='logout.php'>Logout</a></center>";?>
<p class = "content"> This is a page that is a scrap work in progress. </p>
<?php include("footer.php"); ?>
</body>
</html>
我有其他文件,但相信这些文件超出了问题的范围。但是,如果要求,我会很乐意提供其他文件。
提醒:我担心的是我实际上无法使用应该分配给$ user_rs的结果。主要是,即使我似乎已正确地将其分配给查询,它似乎也没有任何结果。在此先感谢您的帮助。
答案 0 :(得分:0)
这显然是一个类似错字的错误。
本质上,它询问如何将变量赋值给表达式结果,答案尽可能明显:
$user_rs = $db_con->query("SELECT * FROM users");
并且有问题的特定问题可以归结为
&#34;为什么我从下面的代码中收到
Undefined variable: user_rs
错误
$user_rs = $db_con->query("SELECT * FROM users");
print_r($user_rs);
答案是&#34;这是不可能的&#34;。
检查您正在运行的文件以及类似的内容。
答案 1 :(得分:0)
您的数据库查询是将记录集作为对象获取,但您尝试使用数组语法引用这些字段。
<html>
<head>
<title>My Webpage</title>
<link rel = "stylesheet" type = "text/css" href = "site.css" />
<link rel="shortcut icon" href="index.html?img=favicon" type="image/ico" />
<script>
function validatingForm(){
var x;
var y;
var e;
var p;
x = document.getElementById('nameCheck').value;
y = document.getElementById('password').value;
e = document.getElementById('errorMsg');
p = document.getElementById('errorPass');
if(x !="" && y !=""){
return true;
} else if(x =="" && y == ""){
e.innerHTML='<font color="red">(required) Name:</font>';
p.innerHTML='<font color="red">(required) Password:</font>';
return false;
} else if(x =="" && y!=""){
e.innerHTML='<font color="red">(required) Name:</font>';
p.innerHTML='<font color="blue">Password:</font>';
return false;
} else if(y =="" && x!=""){
e.innerHTML='<font color="red">(required) Password:</font>';
p.innerHTML='<font color="blue">Name:</font>';
return false;
}
}
</script>
</head>
<body>
<?php
include("header.php");
if ( isset( $_SESSION['user'] ) ){
/* Use is logged in */
echo "
<p class ='welcome' id='greeting'>
Hi, ". $_SESSION['user'] . "! Welcome to the site!
</p>";
} else {
/* User is NOT logged in */
echo "
<p class ='welcome' id='greeting'> Please Login:</p>
<form action='welcome.php' method='post'>
<center>
<b id = 'errorMsg'>Name:</b>
<input type='text' id='nameCheck' name = 'username' />
</center>
<br />
<center>
<b id='errorPass'>Password:</b>
<input type='text' id ='password' name = 'password'/>
</center>
<br /><br />
<center>
<input type='submit' value='Log In' onClick='return validatingForm()'/>
</center>
</form>";
}
if ( isset( $_SESSION['user'] ) ){
/* Query the db, once! */
$user_rs = $db_con->query("SELECT * FROM `users`;");
/* Assume there is a recordset and create the table */
echo "
<center>
<h1> User List:</h1>
<table border='1'>
<tr>
<td><b>User</b></td>
<td><b>Login password</b></td>
</tr>";
/* loop through recordset - new row for each user */
while( $record = $user_rs->fetch_object() ){
echo "
<tr>
<td>" . $record->id . "</td>
<td>" . $record->username . "</td>
</tr>";
}
/* Close the table */
echo "
</table>
</center>";
}
if ( isset( $_SESSION['user'] ) ) echo "<center><a href='logout.php'>Logout</a></center>";
?>
<p class = "content"> This is a page that is a scrap work in progress. I WILL use CSS to do my presentation in future '-)</p>
<?php
include("footer.php");
?>
</body>
</html>
答案 2 :(得分:0)
非常感谢您提供有关此问题的指示和指示。
我确实很喜欢给出的答案,但不是因为有人在接受RamRaider的答案时可能会想到的原因。
所以我想我会把它作为问题的实际答案。我的问题似乎是我没有用花括号明确定义PHP的范围。我把它们从我的代码中删除了,结果,当我省略了检查用户会话的if语句的括号时,它似乎变得混乱了。可怜的PHP服务器:(我确实滥用了它。
如果if-else语句的范围很长(跨越多于一行或两行代码),总是找到一种方法用正确的语法封装范围。否则你就会陷入困境。
话虽如此,关于仅查询数据库一次并调用属性就好像我在查询对象一样,这是一个很好的观点,这对我作为一个新手来说仍然有用。在编写mysqli语句时也要注意这个注释。
非常感谢大家。