View Single Post
Old 08-03-2004, 02:01 PM  
Basic_man
Programming King Pin
 
Basic_man's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Montreal
Posts: 27,360
Quote:
Originally posted by TonyL
I don't quite understand what you want to do.

Let me take a guess at what you are are trying to say.

You need a PHP program that redirects to a URL of your specification from a normal HTML doc? So I assume you are going to submit the URL you would like the PHP script to redirect to through a POST or GET request. So lets try this.

In the HTML doc place an anchor to the PHP script.

** HTML DOC
href="redirect.php?URL=www.suckme.com"
**

** PHP SCRIPT
<?
header("Location: $URL");
?>
**

This more in line with what you are looking for?

-Tony
I think this one will work fine!
__________________
UUGallery Builder - automated photo/video gallery plugin for Wordpress!
Stop looking! Checkout Naked Hosting, online since 1999 !
Basic_man is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote