
November 14th, 2012, 12:21 PM
|
|
Registered User
|
|
Join Date: Nov 2012
Posts: 1
Time spent in forums: 22 m
Reputation Power: 0
|
|
|
Help with a redirect to a new page in a new tab
Right now when I implement this code it redirects my current page to a new page, but what I want it to do is open a new tab with the new page.
<?php
/* Redirect browser */
header("Location: (new page)");
exit;
?>
|