ようこそ! このブログは、PHPとMysqlを使って作成したオリジナルプログラムを、QHMに読み込んで表示させています。

monthly_archives.php

FrontPage

monthly_archives.phpのソースコード

<?
require("MySmarty.class.php");
require('Settings.class.php');
require('Topic.class.php');

$year = $_GET['year'];
if( $year=='' ){ 
	$year = $_POST['year'];
}
if( $year=='' ){ 
	header("Location: index.php" );
	exit;
}
$month = $_GET['month'];
if( $month=='' ){ 
	$month = $_POST['month'];
}
if( $month=='' ){ 
	header("Location: index.php" );
	exit;
}

$smarty = new MySmarty();
$settings  = new Settings;
$topic  = new Topic;

$settings->loadSettings();

$set['maintitle'] = $settings->maintitle;
$set['subtitle'] = $settings->subtitle;
$set['maxtopics'] = $settings->maxtopics;
$set['username'] = $settings->username;
$set['passwd'] = $settings->passwd;
$set['mailaddr'] = $settings->mailaddr;

$topics = $topic->getTopicsMonthly( $year, $month );

$smarty->assign( "settings", $set );
$smarty->assign( "topics", $topics );

$smarty->display( "archives_list.html" );

?>

powered by Quick Homepage Maker 4.25
based on PukiWiki 1.4.7 License is GPL. QHM

最新の更新 RSS  Valid XHTML 1.0 Transitional