⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.php

📁 新闻发布系统
💻 PHP
字号:
<style type="text/css">
<!--
.STYLE1 {
	font-size: 36px;
	font-weight: bold;
	color: #990000;
}
.STYLE3 {color: #FF9966}
-->
</style>
<center>
<table width="90%" height="19">
<tr>
<td colspan="2" bgcolor="#FF9966" ><div align="center" class="STYLE1">新闻发布系统</div></td>
</tr>
<tr>
<td width="51%" ><font size=2><div align="center"><span class="STYLE3"><a href="http://localhost/news/index.php">新闻浏览</a>
  || <a  href="http://localhost/news/admin/index.php">新闻管理</a> || <a href="http://localhost/news/search.php">新闻搜索 </a></span></div></font></td>
</tr>
</table>
</center>
<?php
require("auth.php");
require("functions.php");
switch ($action){
	case "add":
		$title = "发布新闻";
		add_form($title);
		break;
	case "edit":
		$title = "编辑新闻";
		edit_menu($title);
		break;
	case "del":
		$title = "删除新闻";
		del_menu($title);
		break;
	default:
		$title = "";
		main_menu($title);
		break;
}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -