piksrys
8/31/2015 - 10:48 PM

PHP Simple Redirect Function.php

PHP Simple Redirect Function.php

<?php
	function redirect_to($new_location) {
		header("Location: " . $new_location);
		exit;
	}
	// Usage
	redirect_to('http://google.com')
?>