Forum Moderators: coopster

Message Too Old, No Replies

Add to cart text link showing instead of redirecting to cart need Help

         

beautiful

10:32 pm on Jul 10, 2008 (gmt 0)

10+ Year Member



Can anyone help me please ,
i have a catalog and when someone clicks on a product it takes them to a page that has the add to cart text link then to my cart .
how can i change that so that it goes straight to the cart

here is the code for it

$gotosize = strlen($gotolink);
@header("Content-type: text/plain");
@header("Content-Length: $gotosize");
@header("location: $gotolink");
@header("Connection: close");
die("<a href=\"$gotolink\">Add to Cart</a>");
?>

eelixduppy

5:18 pm on Jul 11, 2008 (gmt 0)



Try JUST changing the Location header:

header('Location: ' . $gotolink);

.. and Welcome to WebmasterWorld! :)