上記の正しい専門用語を使用したかどうかはわかりませんが、私がやろうとしていることは次のとおりです... $author に (mySQL ユーザーテーブルから) ユーザー名を出力させるにはどうすればよいですか?投稿の author_id は、ユーザー ID と一致しますか?
<?php
include "inc/mysql-connect.php";
$DynamicFeed = "";
$sql = mysql_query("SELECT * FROM posts ORDER BY id DESC LIMIT 20");
$postCount = mysql_num_rows($sql); // count the output amount
if ($postCount > 0) {
while($row = mysql_fetch_array($sql)){
$id = $row["id"];
$title = $row["title"];
$post = $row["post"];
$author_id = $row["author_id"];
$author = $row["author_id"];
$type = $row["type"];
$date_posted = $row["date_posted"];
$DynamicFeed .= "<div class=\"item\"><img class=\"img-type\" align=\"left\" src=\"img/$type.jpg\"> <p><a href=\"droplet.php?id=$id\"><b>$title</b></a><br />by <a href=\"profile.php?id=$author_id\">$author</a> on $date_posted<br /><br /> $post</p> </div>";
}
} else {
$DynamicFeed = "It would appear that there ar'nt any Droplets here...";
}
?>