2 Star 1 Fork 0

bieber / JSASys

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
readNewsDetail.php 1.10 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
bieber 提交于 2014-09-13 10:27 . first commit
<?php
include_once 'admin_core/services/NewsService.php';
include_once 'admin_core/utils/Function.php';
$newsService = new NewService();
$newsId = $_GET['newsId'];
$news = $newsService->getNewsById($newsId);
$fun = new fun();
$fun->closeDB();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>新闻信息</title>
</head>
<body>
<div style=" height:100px;">
</div>
<center >
<span style=" font-size:20px; font-weight:bold; color:#666;"><?php echo $news->getNews_title();?></span><span style="font-size:13px; color:#999;">——[<?php echo $news->getNews_date()?>]</span><br />
<span style="font-size:14px; font-weight:bold; color:#666;">发布部门:<?php echo $news->getNews_department();?></span><br />
<div style="width:80%; margin:auto; text-align:left;">
<?php echo $news->getNews_content();?>
</div>
<br />
[<a href="#" onclick="window.close();" style="font-size:13px;">关闭</a>]
</center>
</body>
</html>
PHP
1
https://gitee.com/bieber/JSASys.git
git@gitee.com:bieber/JSASys.git
bieber
JSASys
JSASys
master

搜索帮助