Jump to content

[SOLVED] Redirecting to a page


mystic_bovine

Recommended Posts

One is using the header() function. But beware of the "headers already sent" error which is explained in this sticky.

 

<?php
header('Location: somepage.php');
?>

 

Alternatively, you can use meta refresh.

 

<?php
echo '<meta http-equiv="refresh" content="0;url=somepage.php">';
?>

 

Place one of those codes directly where in your script you want the user to be redirected. To save the age of the user, you can use sessions:

 

<?php
session_start(); //start the session data
$age = $_POST['age']; //supposing this comes from an input
$_SESSION['age'] = $age; //set the session which can be used globally in all your pages
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.