RCS Posted April 19, 2008 Share Posted April 19, 2008 what if I wanted to have it so echo "<td><img src =\"upload/" . $row['name']."\"></td>"; has a hyperlink added to the image say http://somesite.com I can't seem to find any info on this anywhere. Thanks in advance. Quote Link to comment Share on other sites More sharing options...
Northern Flame Posted April 19, 2008 Share Posted April 19, 2008 then it would be: echo "<td><a href="http://somesite.com"><img src =\"upload/" . $row['name']."\"></a></td>"; Quote Link to comment Share on other sites More sharing options...
RCS Posted April 19, 2008 Author Share Posted April 19, 2008 what if I wanted to have it so echo "<td><img src =\"upload/" . $row['name']."\"></td>"; has a hyperlink added to the image say http://somesite.com I can't seem to find any info on this anywhere. Thanks in advance. see I thought that "<td><a \"$row[name]\">$row[name]</a> <a href="http://somesite.com"><img src=\"upload/"></a></td>"; But It don't work Quote Link to comment Share on other sites More sharing options...
RCS Posted April 19, 2008 Author Share Posted April 19, 2008 see the http://somesite.com is not in the database this time it's one page that will be added to all images Quote Link to comment Share on other sites More sharing options...
southofsomewhere Posted April 19, 2008 Share Posted April 19, 2008 echo "<td><a href=somesite.com><img src=upload/".$row['name']."></a></td>"; Just need to put the ahref tag around your image. Quote Link to comment Share on other sites More sharing options...
RCS Posted April 19, 2008 Author Share Posted April 19, 2008 OK thank you very much!! Quote Link to comment Share on other sites More sharing options...
Northern Flame Posted April 19, 2008 Share Posted April 19, 2008 oops i meant to put the ahref tag around the image in my post, but yea, thats how you would do it echo "<td><a href="http://somesite.com"><img src =\"upload/" . $row['name']."\"></a></td>"; Edit: oh I didnt see south of somewhere's post Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.