我想存储一个会话变量并回显它。我不知道该怎么做。目前我有以下代码:
<script>
function changecolor(obj)
{
obj.style.backgroundColor="yellow";
}
</script>
<table id="table">
<tr>
<td id="glow1" bgcolor="green" onclick="changecolor(this)" >8-9 /td><br>
<td id="glow2" bgcolor="green" onclick="changecolor(this)" >9-10 /td><br>
<td id="glow3" bgcolor="green" onclick="changecolor(this)" >10-11 /td><br>
</tr>
</table>
<form action="sample.php" method="post">
<input type="submit" name="submit" value="confirm">
</form>