私は 2 つのテーブル user と Image テーブルを持っています。イメージ テーブルでプロファイル画像のみを選択したいのですが、ユーザー テーブルでは 3 つのフィールドを選択できます。内部結合を使用してみましたが、画像が表示されず、エラーも表示されません。以下は私のコードです
<?Php
$target = "image_uploads/";
$image_name = (isset($_POST['image_name']));
$query ="select * from
tish_user inner join tish_images
on tish_user.user_id = tish_images.user_id";
$result= $con->prepare($query);
$result->execute();
$table = <<<ENDHTML
<div style ="text-align:center;">
<h2>Client Review Software</h2>
<table id ="heredoc" border ="0" cellpaddinig="2" cellspacing="2" style = "width:100%" ;
margin-left:auto; margin-right: auto;>
<tr>
<th>Name</th>
<th>Last Name</th>
<th>Ref No</th>
<th>Cell</th>
<th>Picture</th>
</tr>
ENDHTML;
while($row = $result->fetch(PDO::FETCH_ASSOC)){
$date_created = $row['date_created'];
$user_id = $row['user_id'];
$username = $row['username'];
$image_id = $row['image_id'];
#this is the Tannery operator to replace a pic when an id do not have one
$photo = ($row['image_name']== null)? "me.png":$row['image_name'];
#display image
$table .= <<<ENDINFO
<tr>
<td><a href ="client_details.php?user_id=$user_id">$username </a></td>
<td>$image_id</td>
<td></td>
<td>c</td>
<td><img src="'.$target.$photo.'" width="100" height="100">
</td>
</tr>
ENDINFO;
}
?>