I'm try to design a web page that displays pictures (thumbnail) with a link to the full size picture under the picture.. The code below shows the full path to the picture but I can't figure out how to make it into an link.

Here is the php code:

<?php echo $ImageURL; echo $row [ "photo1" ]?>
Member Avatar for P0lT10n

For do that write this

<a href="<?php echo $ImageURL; echo $row['photo1']; ?>">Full Size</a>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.