|
Hi,
I would like to create a php redirect web page.
I realize that I can redirect a page using the following code:
<?php
header("Location: http://www.domain.com/");
exit;
?>
My problem is, I'd like to redirect to a link that has php in it:
http://www.clickbank.net/sell.cgi?link=clientid/2/test&seed=thankyou<?php echo mktime(); ?>
How do I go about doing this?
- Bina.
|