当前位置: 首页 > 图文教程 > 网络编程 > PHP > main.php

PHP
linux php mysql数据库备份实现代码
php mssql 日期出现中文字符的解决方法
PHP中查询SQL Server或Sybase时TEXT字段被截断的解决方法
php 动态添加记录
php 结果集的分页实现代码
php执行sql语句的写法
php连接mysql数据库代码
php 表单验证实现代码
php URL编码解码函数代码
php 表单数据的获取代码
php 异常处理实现代码
php 删除记录实现代码
php 获取mysql数据库信息代码
PHP 文件类型判断代码
解决163/sohu/sina不能够收到PHP MAIL函数发出邮件的问题
php session 预定义数组
php session 检测和注销
php session处理的定制
php session应用实例 登录验证
php cookis创建实现代码

PHP 中的 main.php


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-12   浏览: 398 ::
收藏到网摘: n/a

<?php
/**
* Site Main Page
*
* @author Avenger <[email protected]>
* @version $Id 2003-04-11 18:06:20 $
*/
require_once 'header.inc.php';
tpl_load("index.html",'','keep');
// Get u language
$G_lang = explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);
switch ($G_lang[0]) {
case 'zh-hk':
case 'zh-tw':
case 'zh-mo':
case 'zh-cn':
include('lang.zh.inc.php');
$indexfile = 'main_zh.htm';
break;
default:
include('lang.en.inc.php');
$indexfile = 'main_en.htm';
}
$filedate = (int)date(time()-@filemtime($indexfile));
// If lastupdate less than five hours then update
if ($filedate<18000 && filesize($indexfile)<>0 && empty($_GET['update'])) {
require($indexfile);
exit();
} else {
// Rand title
require_once 'titles.inc.php';
$currdate = date('md');
if ($title_h[$currdate]) {
$title_more = $title_h[$currdate];
} else {
$title_more = $title_o[array_rand($title_o)];
}
// Import template
$tpl->setVar("FILEHEAD",file_head());
/*
$tpl->setVar("FILEPIC",file_pic('/upload/tech/20091012/20091012013807_64223ccf70bbb65a3a4aceac37e21016.gif','国内首款 PHP T-shirt 火热预定中……','http://www.phpe.net/t-shirt'));
$tpl->setVar("FILEPIC",file_pic('/upload/tech/20091012/20091012013807_b0b183c207f46f0cca7dc63b2604f5cc.gif','《PHP&More》创刊号发布','http://www.phpe.net/news/34.shtml'));
$tpl->setVar("FILEPIC",file_pic('/upload/tech/20091012/20091012013808_97e8527feaf77a97fc38f34216141515.jpg','超越PHP欢迎您',''));
$tpl->setVar("FILEPIC",file_pic('/upload/tech/20091012/20091012013808_86b122d4358357d834a87ce618a55de0.gif','Show出你的热情活动 -- 点击查看详情','http://www.phpe.net/club/index.php?act=ST&f=2&t=1416'));
$tpl->setVar("FILEPIC",file_pic('/upload/tech/20091012/20091012013809_f73b76ce8949fe29bf2a537cfa420e8f.gif','超越PHP一岁了','http://www.phpe.net/club/index.php?s=&act=ST&f=7&t=2419'));
*/
$tpl->setVar("CREATE",date('Y-m-d H:i:s'));
$tpl->setVar("DESC",$lang['sitedesc']);
$tpl->setVar("KEYWORDS",$lang['sitekeywork']);
$tpl->setVar("TITLE",$lang['sitetitle'].$title_more);
/*
DBInit();
extract($dbinfo,EXTR_OVERWRITE);
$rs = $dbconn->Execute('SHOW TABLES');
while ($result = $rs->FetchRow()) $tables .= $result["Tables_in_$dbname"].",";
$SQL = 'OPTIMIZE TABLE '.substr($tables,0,-1);
$dbconn->Execute($SQL);
*/
$indexlogin = '<script type="text/javascript" language="Javascript" src="user_login.php"></script>';
$tpl->setVar("INDEXLOGIN",$indexlogin);
$space = '<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td><img src="/upload/tech/20091012/20091012013812_b55ec28c52d5f6205684a473a2193564.gif" width="1" height="10" alt=""></td></tr></table>';
ob_start();
//echo item_title($lang['stat'],'98%');
include("index_stat.inc.php");
$tpl->setVar("INDEXCOUNT",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['vote'],'98%');
include("index_vote.inc.php");
$tpl->setVar("INDEXVOTE",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['links'],'98%');
include("index_links.inc.php");
$tpl->setVar("INDEXLINK",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['intro'],'98%');
include("index_intro.inc.php");
$tpl->setVar("INDEXINTRO",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['news'].' '.make_link('/?n=RSS&t=news', '(rss)', '_blank', 'class="en2"'),'98%');
include("index_news.inc.php");
$tpl->setVar("INDEXNEW",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['articles'].' '.make_link('/?n=RSS&t=articles', '(rss)', '_blank', 'class="en2"'),'98%');
include("index_article.inc.php");
$tpl->setVar("INDEXARTICLE",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['recommendtopic'],'98%');
echo '
<table width="98%" cellpadding="0" cellspacing="0" border="0">
<tr><td align="left">
<script language="Javascript" type="text/javascript" src="'. $Global['bbs'] .'recommend_topic.php?cid=2,6,15,16,18"></script>
</td></tr>
<tr><td bgcolor="#DDDDDD" align="right"><a href="'. $Global['bbs'] .'" title="More...">更多推荐话题 ...</a> </td></tr>
</table>
';
$tpl->setVar("RECOMMENDTOPIC", ob_get_contents());
ob_end_clean();
ob_start();
echo '
<table width="98%" cellpadding="0" cellspacing="0" border="0">
<tr><td align="left">
<script language="Javascript" type="text/javascript" src="'. $Global['bbs'] .'recommend_topic.php?cid=13"></script>
</td></tr>
<tr><td bgcolor="#DDDDDD" align="right"><a href="'. $Global['bbs'] .'index.php?s=&act=SF&f=13" title="More...">更多招聘信息 ...</a> </td></tr>
</table>
';
$tpl->setVar("HRTOPIC", ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['faqs'].' '.make_link('/?n=RSS&t=faqs', '(rss)', '_blank', 'class="en2"'),'98%');
include("index_faq.inc.php");
$tpl->setVar("INDEXFAQ",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['nav'],'98%');
include("index_sitenav.inc.php");
$tpl->setVar("INDEXNAV",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['tips'],'98%');
include("index_tips.inc.php");
$tpl->setVar("INDEXTIPS",ob_get_contents());
ob_end_clean();
/*
ob_start();
echo item_title($lang['events'],'98%');
$tpl->setVar("INDEXEVENTS",ob_get_contents());
ob_end_clean();
*/
ob_start();
//echo item_title($lang['resouce'],'98%');
include("index_resource.inc.php");
$tpl->setVar("INDEXRESOURCE",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['souwang'],'98%');
echo '
<form action="/search.html" method="get" target="_blank">
互联网上的 php 资源<br>
<input style="width:100px" type="text" class="small" size="20" value="php" name="q">
<input type="submit" value="souwang" class="en1">
</form>
';
$tpl->setVar("INDEXSOUWANG",ob_get_contents());
ob_end_clean();
//$tpl->setVar("INDEXPARTNERS",item_title($lang['partners'],'98%'));
ob_start();
//echo item_title($lang['calendar'],'98%');
include_once "calendar.inc.php";
$c = new Calendar;
echo $c->getCurrentmonthView();
$tpl->setVar("INDEXCALENDAR",ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['newtopic'],'98%');
echo '
<table width="95%" cellpadding="0" cellspacing="0" border="0">
<tr><td align="left">
<script language="Javascript" type="text/javascript" src="'. $Global['bbs'] .'new_topic.php?cid=2,6,15,16,18"></script>
</td></tr>
</table>
';
$tpl->setVar("INDEXFORUM", ob_get_contents());
ob_end_clean();
ob_start();
//echo item_title($lang['maillist'],'98%');
echo '
<table>
<tr>
<td align="center">
<form method="post" action="/?n=Maillist">
<font class="en1">Join the mail list:</font>
<input style="width:100px" name="m" type="text" class="small" size="20" maxlength="100" title="加入邮件列表" value="Enter your mail" onFocus="if(this.value==\'Enter your mail\')this.value=\'\';" onBlur="if(this.value==\'\')this.value=\'Enter your mail\';"><br>
<input type="submit" value="Submit" class="en1">
</form>
</td>
</tr>
</table>
';
$tpl->setVar("INDEXMAIL",ob_get_contents());
ob_end_clean();
// My name :)
$s_name='index.php';
$tpl->setVar("SPACE",$space);
$tpl->setVar("FILEFOOT",file_foot());
$tpl->parse('output','main');
$output = $tpl->get("output");
// Rwrite to file
wfile($indexfile,$output);
require($indexfile);
}
?>