I want to fetch image from database to html table cell. I have tried something but it gives me an error. Let me know what is wrong with this code.
         <tbody>
          <?php
         $result = mysqli_query($conn,$sql);
         while($row = mysqli_fetch_array($result,MYSQLI_BOTH)) {  
         echo " <tr>
         <th>1</th>
         <td>{$row['itemId']}</td>
        **<td><img src="imageView.php?image_id=<?php echo .$row["imageId"].; ?   
         >" /><br/>**
        <td/>
         <br/>
         </td>
         <td>{$row['itemName']}</td>
         </tr>";
         }
        ?>
       <tr>
      <th scope="row">2</th>
      <td>Nicholas</td>
       <td>Sanchez</td>
     <td>username</td>
     </tr>
     <tr>
    <th scope="row">3</th>
      <td>Debra</td>
     <td>Shaw</td>
   <td>username</td>
   </tr>
  <?php 
  mysqli_close($conn);
 ?>
</tbody>
 
    