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
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.