Advertisement
Andronicuszeno

general_functions.php

Apr 5th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. <?php
  2. // General Functions
  3.    
  4.    
  5.     // Page Redirection Function
  6.     function redirect_to($new_location) {
  7.         header("Location: " . $new_location);
  8.         exit;
  9.     }
  10.    
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement