因应您的要求随意做了一个范例...这是未加 Cookie 的只做CSS控制底色的范例给您看其余您要自己改了
效果预览:
http://email.djorz...yle.php以下是该程式原码:
复制程式
<?php
/**
* 金色
*/
if(!$Style || $Style=="Gold"){
$css='body {font-family: Verdana;FONT-SIZE: 12px;MARGIN: 0;color: #000000;background: #ffff80;}'
/**
* 绿色
*/
}elseif($Style=="Green"){
$css='body {font-family: Verdana;FONT-SIZE: 12px;MARGIN: 0;color: #000000;background: #80ff00;}'
}
$test="<html>
<head>
<meta http-equiv=Content-Type content=text/html; charset=big5>
<title>范例</title>
</head>
<!--css--><style type='text/css'>
$css
</style><!--css-->
<table border=0 width=600 cellspacing=1 cellpadding=0 class=body>
<body>
<a href='style.php?Style=Green' title='风格颜色(绿色)'><font size=ƌ'>绿</font></a>
<a href='style.php?Style=Gold' title='风格颜色(金色)'><font size=ƌ'>金</font></a>
</body>
</html>";
echo "$test";
?>