我有一个使用 foreach 循环和会话变量生成的结果页面
这就是它的样子
<?php
if(count($degree) > 0){
foreach ($degree as $key => $val){
$url = "http://www.concordiauniversity.com/".$val.'/'.$classname[$key];
echo "<form method='post' enctype='multipart/form-data' action='/classname_handler'><div class='control-group' align='center'><ul class='thumbnails'><a href=$url class='thumbnail'><img src=$url onerror=this.src='images.png' alt=Click the empty space here to see the class :) width=60 height=100></a><h4>$classname[$key]</h4><a href='/classname_handler' type='text' id='follower' name='follower' class='btn btn-large btn-block btn-primary' type='button'>follow class <i class='icon-hand-right icon-white'></i> $val <i class='icon-user icon-white'></i></a></ul></div></form>";
$_SESSION['degree'] = $degree;
$_SESSION['classname'] = $classname;
}
}
?>
我的问题是如何为每个 $classname 设置会话,以便当我单击关注类按钮时,会话仅适用于该特定类。我现在拥有它的方式,我得到了一个数组。