php image tag code example
Example 1: img html
<img src="smiley.gif" alt="Smiley face" height="42" width="42">
Example 2: img src php
<?php
while($row = mysqli_fetch_array($result)){
echo '
<tr>
<td> '.$row['x'].' </td>
<td> '.$row['y'].' </td>
<td> '.$row['z'].' </td>
<td> '.$row['f'].' </td>
<td> '.$row['g'].' </td>
<td> '.$row['d'].' </td>
<td><img src="'.$url.'"/></td>
</tr>';
}
?>
Example 3: img tag
<img src="photo1.png" alt="">