I have a field that looks like
SKU: www.cool.com
the code that spits that out is
<tr>
<td><b>SKU:</b></td>
<td><?php echo $product_info['sku']; ?></td>
</tr>
the www.cool.com is what I entered in for sku: but what comes out on the page is not a clickable link. What I would like to have is where i enter in what ever website I want for sku, then have the output on the webpage look like
SKU: Click Here
and when they click on "click here" it will take them to www.cool.com
i have tried several things, just not getting it to work, and help will be appreciated.