我试图在另一个数组的foreach语句中使用一个数组中的变量。
我有一个网格视图,显示用户的个人资料照片,他们的显示名称,当前位置和可用性,以及使用他们的用户名来完成应用于该框的链接。
用户的表格成立;我应该在将来需要用户名(和用户ID)。
配置文件表保存;显示名称。
profilephotos表保存;个人资料照片。
位置表成立;当前位置。
所有表都通过user_id和username列链接在表中,这些列与users表匹配。
我对用户框的代码是;
<?php foreach($rows as $row): ?>
<div class="box">
<div class="boxInner">
<a href="profile.php?username=<?php echo htmlentities($row['username'], ENT_QUOTES, 'UTF-8'); ?>&uid=<?php echo htmlentities($row['id'], ENT_QUOTES, 'UTF-8'); ?>">
<img src="uploads/profile-photos/<?php echo htmlentities($pphoto['profilephoto_file'], ENT_QUOTES, 'UTF-8'); ?>" />
<div class="titleBox" style="text-align:left; line-height:20px;">
<span style="font-size:18px; font-weight:bold;"><i class="fa fa-user"></i> <?php echo htmlentities($row['profile_displayname'], ENT_QUOTES, 'UTF-8'); ?>,
<?php echo htmlentities($row['profile_displayage'], ENT_QUOTES, 'UTF-8'); ?></span>
<br />
<span style="font-size:14px;"><i class="fa fa-map-marker"></i> City Name | <i class="fa fa-clock-o"></i> Now</span>
</div></a>
</div>
</div>
<?php endforeach; ?>
我的SQL查询和数组代码是;
$query = "
SELECT
users.id,
users.username,
users.email,
profiles.profile_displayname,
profiles.profile_displayage,
profiles.profile_photo
FROM users, profiles
WHERE users.id = profiles.user_id;
";
try
{
// These two statements run the query against your database table.
$stmt = $db->prepare($query);
$stmt->execute();
}
catch(PDOException $ex)
{
// Note: On a production website, you should not output $ex->getMessage().
// It may provide an attacker with helpful information about your code.
die("Failed to run query: " . $ex->getMessage());
}
// Finally, we can retrieve all of the found rows into an array using fetchAll
$rows = $stmt->fetchAll();
$query = "
SELECT
users.id,
users.username,
profilephotos.user_id,
profilephotos.profilephoto_file
FROM users, profilephotos
WHERE users.id = profilephotos.user_id;
";
try
{
// These two statements run the query against your database table.
$stmt = $db->prepare($query);
$stmt->execute();
}
catch(PDOException $ex)
{
// Note: On a production website, you should not output $ex->getMessage().
// It may provide an attacker with helpful information about your code.
die("Failed to run query: " . $ex->getMessage());
}
// Finally, we can retrieve all of the found rows into an array using fetchAll
$profilephotos = $stmt->fetchAll(PDO::FETCH_ASSOC);
无论我尝试什么 - 我都无法让foreach拉出正确的图像。我已设法提取图像,但foreach语句将相同的图像应用于每个用户,无论我指示查询$profilephotos
寻找的ID。
我做错了什么?我是否正确地采取了这种方式?
任何帮助都将不胜感激 - 请注意,虽然我是PHP的新手。
答案 0 :(得分:1)
您需要一个查询而不是两个。 查询可能如下所示:
SELECT
users.id AS id,
users.username AS username,
users.email as email,
profilephotos.profilephoto_file AS file_photo,
profiles.profile_displayname AS file_displayname,
profiles.profile_displayage AS displaypage,
profiles.profile_photo AS photo
FROM users
JOIN profilephotos ON users.id = profilephotos.user_id
JOIN profiles ON users.id = profiles.user_id;
你需要两个使用连接 - 这是更好的做法。 并注意关键字'AS' - 它有助于消除不同表中相同列名的歧义。
答案 1 :(得分:0)
如果您想查看其中一个查询变体(使用最新的个人资料图片),就是这样:
SELECT
users.id AS id,
users.username AS username,
users.email as email,
profilephotos.profilephoto_file AS file_photo,
profiles.profile_displayname AS file_displayname,
profiles.profile_displayage AS displaypage,
profiles.profile_photo AS photo
FROM users
LEFT JOIN profiles ON users.id = profiles.user_id
LEFT JOIN profilephotos ON users.id = profilephotos.user_id
WHERE profilephotos.id in (select max(id) from profilephotos group by user_id)
ORDER BY id
但我觉得它太复杂了,可能完全错了,因为我不知道你的表架构。