How to pass variables received in GET string through a php header redirect?

Solution 1:

First convert the $_GET HTTP variable into a query string using

$query = http_build_query($_GET);

Then append the query string variable to your redirect header

header('location: domain.com'."?".$query);

Done.

Solution 2:

session_start();
$_SESSION['fname']   = $_GET['name'];
$_SESSION['femail']  = $_GET['email'];
$_SESSION['fphone']  = $_GET['telephone'];
....etc

header('Location: confirmed.php');

and get it on the next page like:

session_start();
$fname   = $_SESSION['fname'];
$femail  = $_SESSION['femail'];
$fphone  = $_SESSION['fphone'];

....etc

Solution 3:

You don't need to store them in a session, you can easily pass them with your location header:

$fname   = $_GET['name'];
$femail  = $_GET['email'];
$fphone  = $_GET['telephone'];
//now a header with these var's:
header("Location: confirmed.php?name=".$fname."&email=".$femail."&telephone=".$fphone);

In confirmed.php you can get these variables with $_GET method.