Как можно изменить переменную когда переходишь по ссылке ну тоесть например запомнить имя файла или типо того.
<?php
require "index3.php";
?>
<html>
<head>
<meta charset = "utf-8">
<title>Site</title>
</head>
<body>
<div id = "form" align = "center">
<p>Ваши картинки:</p>
<?php
$dir = $_SESSION["login"];
$di = scandir($dir);
$i = 0;
while(count($di) > $i){
if($di[$i] != "." && $di[$i] != ".."){
echo "<a id = 'a' href = 'index7.php'>".$di[$i]."</a>"."<br>";
}
$i+=1;
}
?>
<a id = "a" href = "index4.php">Назад.</a>
</div>
<style>
#form{
position: fixed;
top: 40%;
left: 40%;
overflow-x: auto;
width: 200px;
height: 117px;
border: 1px solid black;
}
#a{
text-decoration: none;
color: black;
}
#a:hover{
color: blue;
}
</style>
</html>