[solved]-Code Php Page Created Page 1 Page 2 Page 3 Page 4 Page 5 Would Display List Pages Ve Visit Q39002126
Here is my code for a PHP page that I created.
<?php
session_start();;▒
?>
<html>
<body>
<?php
$_SESSION[“favbasketballteam”] = “Duke”;
$_SESSION[“mywifesname”] = “Erica”;
echo “I’ve set my sessions variables.”;
?>
<br/>
<a href=”page1.php”>Page 1</a>
<a href=”page2.php”>Page 2</a>
<a href=”page3.php”>Page 3</a>
<a href=”page4.php”>Page 4</a>
<a href=”page5.php”>Page 5</a>
How would I display a list of all the pages I’ve visited duringthis session? Where would that code be placed within my currentcode?
Expert Answer
Answer to Here is my code for a PHP page that I created. … . . .
OR

