I need to pass a variable from page one to third page how do I make it?
- I can pass variable from 1 page to next
- how can i to pass variable from 1st to second page and same value to 3rd page
here is the example
<a href="page2.php?myname=Suraj Mittal&age=22&fav_color=White&fav_fruit=Grapes">Click here to send variables in the URL</a>
second page
<?php
$name = $_GET['myname'];
$age = $_GET['age'];
$color = $_GET['fav_color'];
$fruit = $_GET['fav_fruit'];
echo "My name is ".$name.". and I am ".$age." years old. My favourite color is ".$color." and my favourite fruit is ".$fruit.".";
?>