我想知道让我的 td 标记样式以会话变量的形式从另一个 php 页面获取值可见,因为我的代码在下面定义,
在 php 页面的其他条件下,我正在设置会话变量并重定向到另一个页面,
else {
session_start();
$_SESSION['Validation'] = 'on';
header("Location: index.html");
}
之后在 table 标记之间的 index.html 页面上,我使用这个脚本,
<?php
session_start();
$foo = $_GET['Validation'];
echo $foo;
?>
<tr><td colspan=2><font face="verdana,arial" size="-1" color="red" style="visibility:hidden">Wrong username or Password</font></td></tr>
如果会话变量没有得到任何值,如何使 td 标签样式可见,并且它保持隐藏状态????
希望听到你的...
提前致谢