read.phpの詳しい設定


特徴
このスクリプトもHTMLファイルに埋め込んで使用する為に作成しました。
機能は、今日や指定された日の統一運動、記念日をテキストで表示するだけです。

使い方
SSIが使用できるサーバーの場合
<!--#include virtual="calender/read.php"-->


HTMLのiframeの機能を使用して表示
<iframe src="calender/read.php" width=100% frameborder=0>
この部分は iframe 対応のブラウザで見てください。
</iframe>

西暦を指定する場合
year=西暦

例:read.php?year=2001

月を指定する場合
month=月

例:read.php?month=12

複数指定例

例1:read.php?year=2003&month=12(2003年12月を指定)

明日の内容を表示する
mode=1
例:read.php?mode=1

昨日の内容を表示する
mode=2
例:read.php?mode=2


BACK