I am using OpenCart. I want to give a link from product_form.tpl
to another page. I mean I have added a tab called 'Allocation' in which I have given a button 'Add Allocation' which should redirect an external page. I'd like also to provide the product_id
within this link but it's not working properly...
Here is my code (product_form.tpl
)
<div id="tab-allocate">
<table class="list"><tr><td align="center"><a href="allocation.php?product_id=&product_id" target="_blank" class="copybutton" style="width:120px;">ADD ALLOCATION</a></td></tr></table>
</div>
But allocation.php?product_id=&product_id
is not working, it goes to allocate.php
page
but doesn't carry the product_id. What am I doing wrong?