我的问题是我想显示我在数据库中的用户个人资料的详细信息。由于某种原因,它一直给我错误的未定义变量:行'。
此外,我可以使用此代码显示用户Username和UserID。 (HTML CODE)
所以我不确定缺少什么,或者我做错了什么。
希望你能帮助我。
提前谢谢你:)
PHP代码 - 数据库连接& SQL QUERY
<?php
$id = session_id();
if ($id == "") {
session_start();
}
if (!isset($_SESSION['username'])) {
header("Location: login.php");
} //redirects to the login page if the user is not logged in
if($_POST){
try {
$host = '127.0.0.1';
$dbname = 'webdev_2014376';
$user = 'root';
$pass = '';
# MySQL with PDO_MYSQL
$DBH = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass);
} catch(PDOException $e) {echo 'Error';}
///////////////////////////////////////////////////////////////////////////////
$sqlQuery = "SELECT * FROM users WHERE UserID = :UserID LIMIT 1";
$statement = $DBH->prepare($sqlQuery);
$status = $statement->execute();
if (!$status) {
die("Could not retrieve user");
}$row = $sqlQuery->fetch(PDO::FETCH_ASSOC);
if(isset($row)){
$_SESSION['id'] = $row['UserID'];
$_SESSION['username'] = $row['Username'];
$_SESSION['firstname'] = $row['FirstName'];
$_SESSION['lastname'] = $row['LastName'];
$_SESSION['email'] = $row['Email'];
$_SESSION['birthday'] = $row['Birthday'];
$_SESSION['phonenumber'] = $row['PhoneNumber'];
}
}
?>
HTML CODE
<body>
<div class="container container_12">
<div class="header grid_12">
<div class="headerTitle grid_6 alpha">
<h1>Facebook Again!</h1>
</div>
<?php
if (isset($_SESSION['username'])) {
echo '<div class="headerNav grid_6 omega">';
echo '<ul>';
echo '<li class="grid_1 alpha"><a href="index.php">Home</a></li>';
echo '<li class="grid_2 push_1"><a href="profile.php?UserID='.($_SESSION['id']).'">'. ($_SESSION['username']) . '</a></li>';
//echo '<li class="grid_2 push_1"><a href="profile.php?UserID=11">' . ($_SESSION['Username']) . '</a></li>';
echo '<li class="grid_2 omega push_1"><a href="logout.php"><span class="glyphicon glyphicon-log-in"></span> Logout</a></li>';
echo '</ul>';
echo '</div>';
}
else {
echo '<div class="headerNav grid_6 omega">';
echo '<ul>';
echo '<li class="grid_2 alpha"><a href="login.php">Login</a></li>';
echo '<li class="grid_2 omega"><a href="register.php">Register</a></li>';
echo '</ul>';
echo '</div>';
}
?>
</div>
<div class="profile grid_12">
<div class="profPic grid_3 suffix_1 alpha">
<img src="images/profile/RTZ.jpg" style="width: 300px; height: 300px;">
</div>
<div class="profText prefix_1 grid_7 omega">
<?php
echo "<h1>Profile of " . $_SESSION['username'] . "</h1>";
echo '<tr>';
echo '<td class="vedHeaders">First Name: </td>' . '<td class="vedOutput">' . $_SESSION['firstname'] . '</td><br/>';
echo '</tr>';
echo '<tr>';
echo '<td class="vedHeaders">Last Name: </td>' . '<td class="vedOutput">' . $row['LastName'] . '</td><br/>';
echo '</tr>';
echo '<tr>';
echo '<td class="vedHeaders">Email: </td>' . '<td class="vedOutput">' . $row['Email'] . '</td><br/>';
echo '</tr>';
echo '<tr>';
echo '<td class="vedHeaders">Birthday: </td>' . '<td class="vedOutput">' . $row['Birthday'] . '</td><br/>';
echo '</tr>';
echo '<tr>';
echo '<td class="vedHeaders">Phone Number: </td>' . '<td class="vedOutput">' . $row['PhoneNumber'] . '</td><br/>';
echo '</tr>';
?>
</div>
</div>
</body>
答案 0 :(得分:2)
在HTML代码中,当$row['LastName']
$_SESSION['lastname']
时,$row
使用POST
(其他变量也是如此)。 c
仅在您处理r1
数据并执行SQL查询时设置,在未提交表单的情况下打开页面时未设置{。}}。
答案 1 :(得分:1)
我认为问题在于你寻找isset($row)
。因为如果在数据库中有一个entrie你会得到一行ELSE你将得到错误,因此该行将总是设置在发布但是。
然后你尝试像数组一样访问“false”。
答案 2 :(得分:0)
使用$ _SESSION而不是$ row,并注意索引,因为在$ _SESSION数组中你有小写:$ _SESSION [&#39; lastname&#39;] $ _SESSION [&#39; email&#39;]依此类推, - 数组键区分大小写。
答案 3 :(得分:0)
我认为这里的问题是你需要在检查会话ID设置之前启动会话,尝试启动会话然后在以下后验证会话变量:
session_start();
if (!isset($_SESSION['username'])) {
header("Location: login.php");
}
答案 4 :(得分:-2)
使用$_SESSION
代替$row
。