Answers for "how to send values in another page in php without session"

PHP
-1

how to pass value from one php page to another using session

//Thanks for the answers above. Here's how I did it, I hope it helps those who follow. I'm looking to pass a registration number from one page to another, hence regName and regValue:

//Create your first page, call it set_reg.php:

<?php

session_start();

$_SESSION['regName'] = $regValue;

?>

<form method="get" action="get_reg.php">
    <input type="text" name="regName" value="">
    <input type="submit">
</form>
  
//Create your second page, call it get_reg.php:

<?php

session_start();

$regValue = $_GET['regName'];

echo "Your registration is: ".$regValue.".";

?>

<p><a href="set_reg.php">Back to set_reg.php</a>
Posted by: Guest on July-20-2020
0

php send values in $_SESSION to other page

<?php
//PAGE 1
// Start the session
session_start(); //<- IMPORTANT TO SET IT AT THE TOP IN PAGE 1
?>
<!DOCTYPE html>
<html>
<body>

<?php
// Set session variables
$_SESSION["favcolor"] ="green";
$_SESSION["favanimal"] ="cat";
echo "Session variables are set.";
?>
---------------------------------------------------------------
<?Php
//Page2:
session_start(); //<- IMPORTANT TO SET IT AT THE TOP IN PAGE 2
echo "my favcolor is".$_SESSIO["favcolor"];/*here it will display my fav color is green*/
?>
Posted by: Guest on October-11-2021

Code answers related to "how to send values in another page in php without session"

Browse Popular Code Answers by Language