How do I create a link from my image which is in my webpage using CGI ?
print $cgi->img({-src=>'http://localhost/MyImage.jpg',
-alt=>'ahoj',
-height=>'300',
-width=>'250',
-align=> 'middle',
-id=>'myid'});
I'm wondering if I could pass href as an additional parameter for it to create a link.I tried but did not succeed.Please help.