星期五, 12月 14, 2007

TABLE 固定表頭首行 CSS

在 TR 中置入即可!!
style="position: relative; top: expression(this.offsetParent.scrollTop);"

星期一, 12月 10, 2007

php mail() 偽裝 Sender Address

$headers = "Content-Type: text/html; charset=big5 \r\n";
$headers .= "From: XXX \r\n";
$headers .= "Reply-To: XXX \r\n";
$headers .= "Return-Path: XXX \r\n";
$headers .= "X-Mailer: PHP \r\n";

$FakeFrom = "xxx@xxx.com";
mail($to, $subject, $message, $headers, "-f" . $FakeFrom);