We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

tylerhall on 12/31/69


Tagged

http header location redirect


Versions (?)


Who likes this?

8 people have marked this snippet as a favorite

luman
postNuKe
terriK
vaaaska
mountainash
vali29
hudge
Firemarble


Header Redirect


Published in: PHP 


PHP code to redirect a user to another location.

  1. function redirect($url)
  2. {
  3. header("Location: $url");
  4. exit();
  5. }

Report this snippet 

You need to login to post a comment.