PDA

View Full Version : PHP redirect


sifuhall
Wed 23rd May '01, 3:38pm
Hi all,

I'm a long time perl programmer and have started taking a serious look at php (partly because of vBulletin)

I was wondering if php has anything similar to the

print " Location: $url\n\n";

for browser redirects?

pedro_gb
Wed 23rd May '01, 6:02pm
Yep. Just do:
header("Location: http://www.vbulletin.com/");

sifuhall
Thu 24th May '01, 5:47pm
thanks!