PDA

View Full Version : Different Address Bar


keesjansma3
04-13-2004, 01:00 PM
Hi all,

Iam quite new to all this and I was wondering how I can display a different url in the address bar?

Even though visitors are seeing a complete different page..
I need this from hiding affiliate links from the address bar. I dont care much about the status bar.

I know this possible with java but I am rather looking for a
cgi/php etc. script so it doesnt depend on the users browser.

Anu suggestions?

Please let me know...

Best regards
Kees
Holland

dswimboy
04-19-2004, 01:45 AM
php would be the easiest, i think
require("http://www.yahoo.com");
include("http://www.yahoo.com");
include returns a warning on error, require retunrs a fatal error

#!/perl
use LWP::Simple;
$URL = 'http://www.yahoo.com';
print get($URL);