Forward a page using PHP
- Thank to Rollie Hawk
1 2 <?php 3 header("Location: http://domain.tld/page.php"); 4 ?>
DZone Snippets > volume4 > page
12723 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Schalk Neethling www.volume4.com
1 2 <?php 3 header("Location: http://domain.tld/page.php"); 4 ?>