To link to a specific product (from a page outside of the actinic shop) you can use this link:-
Where 171 is the product reference of the product.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
That URL is a bit long. So here's a php program (product.php) I wrote to shorten it:-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Now I use this URL to link to products:-
http://www.stuff-for-computers.co.uk/product.php?171
Code:
www.stuff-for-computers.co.uk/cgi-bin/ss000000.pl?PRODREF=171&NOLOGIN=1&ACTINIC_REFERRER=http://www.stuff-for-computers.co.uk/acatalog/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
That URL is a bit long. So here's a php program (product.php) I wrote to shorten it:-
Code:
<?php $prod = $_SERVER['QUERY_STRING']; require "http://www.stuff-for-computers.co.uk/cgi-bin/ss000000.pl?PRODREF=$prod&NOLOGIN=1&ACTINIC_REFERRER=http://www.stuff-for-computers.co.uk/acatalog/"; ?>
Now I use this URL to link to products:-
http://www.stuff-for-computers.co.uk/product.php?171
Comment