Answers for "php send to another page"

PHP
2

php go to another page

<?php header("Location: anotherDirectory/anotherFile.php"); ?>
Posted by: Guest on April-14-2020
2

send value from one page to another in php

//On page 1
$_SESSION['varname'] = $var_value;

//On page 2
$var_value = $_SESSION['varname'];
Posted by: Guest on July-15-2020

Code answers related to "php send to another page"

Browse Popular Code Answers by Language