/[LeafOK_CVS]/fenglin/www/special.php
ViewVC logotype

Contents of /fenglin/www/special.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations)
Mon Mar 24 05:48:54 2025 UTC (11 months, 3 weeks ago) by sysadm
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
FILE REMOVED
Remove special feature

1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <?
3 if (isset($_GET["type"]))
4 $type=$_GET["type"];
5 else
6 $type="";
7
8 switch($type)
9 {
10 case "history":
11 $title="校史简介";
12 break;
13 case "department":
14 $title="院系设置";
15 break;
16 case "professor":
17 $title="一级教授";
18 break;
19 case "academician":
20 $title="院士风采";
21 break;
22 case "song":
23 $title="上医校歌";
24 break;
25 case "article":
26 $title="相关文章";
27 break;
28 default:
29 $title="选择栏目";
30 break;
31 }
32 ?>
33 <html>
34 <head>
35 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
36 <title>枫林在线 - 专栏</title>
37 <link rel="stylesheet" href="css/default.css" type="text/css">
38 </head>
39
40 <body>
41 <center>
42 <?
43 include "./head.inc.php";
44 ?>
45 <table width="760" border="0" cellpadding="0" cellspacing="0">
46 <tr height=20 bgcolor=#F3F9FC>
47 <td width="20">&nbsp;</td>
48 <td>枫林在线 &gt;&gt; <a href="special.php">专栏</a> &gt;&gt; <? echo $title; ?></td>
49 <td width="20">&nbsp;</td>
50 </tr>
51 <tr>
52 <td colspan=3 height=1 bgcolor=gray></td>
53 </tr>
54 <tr height=5>
55 <td>&nbsp;</td>
56 </tr>
57 </table>
58 <table width="760" border="0" cellpadding="0" cellspacing="0">
59 <tr>
60 <td width="20%" align="center" valign="top" class="td2">
61 <table width="80%" border="0" cellpadding="0" cellspacing="0">
62 <tr height=20>
63 <td></td>
64 </tr>
65 <tr height=30 class="title_bar_5">
66 <td align="center">- 永恒的上医 -</td>
67 </tr>
68 <tr height=5>
69 <td></td>
70 </tr>
71 <tr height=20>
72 <td align="center"><a href="special.php?type=history">校史简介</a></td>
73 </tr>
74 <tr height=20>
75 <td align="center"><a href="special.php?type=department">院系设置</a></td>
76 </tr>
77 <tr height=20>
78 <td align="center"><a href="special.php?type=professor">一级教授</a></td>
79 </tr>
80 <tr height=20>
81 <td align="center"><a href="special.php?type=academician">院士风采</a></td>
82 </tr>
83 <tr height=20>
84 <td align="center"><a href="special.php?type=song">上医校歌</a></td>
85 </tr>
86 <tr height=20>
87 <td align="center"><a href="special.php?type=article">相关文章</a></td>
88 </tr>
89 <tr height=20>
90 <td></td>
91 </tr>
92 </table>
93 </td>
94 <td width="80%" align="center" valign="top">
95 <table width="95%" border="0" cellpadding="0" cellspacing="0">
96 <tr height="20">
97 <td></td>
98 </tr>
99 <tr height="30" class="title_bar_6">
100 <td><? echo $title; ?></td>
101 </tr>
102 <tr>
103 <td class="td4">
104 <div style="margin:10px;">
105 <?
106 switch($type)
107 {
108 case "history":
109 include "./shmu/history.inc.php";
110 break;
111 case "department":
112 include "./shmu/department.inc.php";
113 break;
114 case "professor":
115 include "./shmu/professor.inc.php";
116 break;
117 case "academician":
118 include "./shmu/academician.inc.php";
119 break;
120 case "song":
121 include "./shmu/song.inc.php";
122 break;
123 case "article":
124 include "./shmu/article.inc.php";
125 break;
126 default:
127 ?>
128 请从左侧列表选择栏目。
129 <?
130 }
131 ?>
132 </div>
133 </td>
134 </tr>
135 </table>
136 </td>
137 </tr>
138 </table>
139 <?
140 include "./foot.inc.php";
141 ?>
142 </center>
143 </body>
144 </html>

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1