0

I have a group of links with href of an image how can i open this in another page within an <image> tag ? or an iframe and can i get the information shown inside the iframe

while ($row = mysql_fetch_assoc($files)) {             
    echo('<tr>
        <td>&diams; <a href="uploads/'.$row['file_name'].'">'.$row['file_name'].'</a> </td>
    </tr>');                
}
Rory McCrossan
  • 331,213
  • 40
  • 305
  • 339
dalia
  • 1
  • 2

1 Answers1

0

Yes you can nest an img tag inside a tag.

The result will be something like:

<a href=''><img src=''/></a>
Sim1
  • 534
  • 4
  • 24