Jump to content

Query within while query


slj90
Go to solution Solved by Ch0cu3r,

Recommended Posts

I have a query which displays statuses from users:

$result = mysql_query("SELECT * FROM stream ORDER BY stream_id DESC");



while($row = mysql_fetch_array($result)) {
$tha = $row['stream_time'];
$time = strtotime($tha);


  echo "<tr><td><b>" . $row['stream_username'] . "</b></tr></td>" . " <tr><td>" . $stream_pp . "</td><td>" . $row['stream_status'] . " " . humanTiming($time) . $msg;
  echo "<br></tr></td>";



}
echo "</table>";

I want to get the profile picture of each user, how would I add this code?

 

$query = "SELECT `profile_picture` FROM `users` WHERE `user_username` = '$status_username'";
$result = mysql_query($query) or die($query."<br/><br/>".mysql_error());
$stream_pp = mysql_result($result, 0, 0);

By simply just adding it within it only displays one result.

 

Any ideas?

Thanks

Link to comment
Share on other sites

  • Solution

You wouldn't have two separate queries. Instead you'd use a JOIN to get the user profile picture. An Example query

SELECT s.stream_username, s.stream_time, s.stream_status,   # get the username, time and status from the streams table
    u.profile_picture                                       # get the profile_picture from the users table
FROM stream s
LEFT JOIN users u ON u.user_username = s.stream_username    # join the users table, where the username matches in the user and stream tables
ORDER BY s.stream_id DESC

And you'd loop over the results as you normally would

$sql = 'SELECT s.stream_username, s.stream_time, s.stream_status,   
    u.profile_picture                                       
FROM stream s
LEFT JOIN users u ON u.user_username = s.stream_username 
ORDER BY s.stream_id DESC';

$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
    $tha = $row['stream_time'];
    $time = strtotime($tha);

    echo "<tr><td><img src=\"{$row['profile_picture']}\" /><b>" . $row['stream_username'] . "</b></tr></td>" . " <tr><td>" . $stream_pp . "</td><td>" . $row['stream_status'] . " " . humanTiming($time) . $msg;
    echo "<br></tr></td>";
}

echo "</table>";
Link to comment
Share on other sites

Thanks for the replies.

 

Ch0cu3r, I have tried using your suggestion

 

<?php

include './include/connect.php';

error_reporting(E_ALL);
$sql = "SELECT s.stream_username, s.stream_time, s.stream_status, u.profile_picture FROM stream s LEFT JOIN users u ON u.user_username = s.stream_username ORDER BY s.stream_id DESC";


$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
 echo $row['s.stream_status'];
echo $row['u.profile_picture'];

}
?>

But get the error:

 

Notice: Undefined index: s.stream_status in /home/partyfm/public_html/play.php on line 14

Notice: Undefined index: u.profile_picture in /home/partyfm/public_html/play.php on line 15

What could be wrong?

Many thanks,

Edited by slj90
Link to comment
Share on other sites

When you're not sure about the content of a variable, check it. This will tell you exactly what it does and does not contain:

var_dump($row);

You'll see that there is no key named “s.stream_status”. It's stream_status, because that's the name of the column. The “s” is just an internal qualifier which tells MySQL which table it should get the column from (because multiple tables may have the same columns).

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.