本文主要是介绍php公益环保网,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、运行环境
php版本:5.5及以上
开发工具: notepad++,sublime,phpstorm,dreamweaver,hbuilder都可
数据库: mysql
服务器: apache
集成环境: phpstudy(wamp、xampp均可)
详细技术:HTML+CSS+js+PHP+MYSQL
<!doctype html>
<html><head><meta charset="utf-8"><title>首页</title><link rel="stylesheet" type="text/css" href="css/style.css" /><link rel="stylesheet" type="text/css" href="css/toggle.css" /></head><body><div id="head"><div class="head-box clearfix"><div class="logo"><img src="images/logo.png" width="300" alt="logo" /></div><div class="nav clearfix"><ul class="menu clearfix"><li class="li1"><a href="index.php">首页</a></li><li class="li1"><a href="news.php">新闻中心</a></li><li class="li1"><a href="about.html">公益知识</a></li><li class="li1"><a href="contact.html">联系我们</a></li></ul></div><div class="search clearfix"><a href="login.html">【管理员登录】</a></div></div></div><div id="banner"><div class="box"><div class="g"><ul class="pic"><li style="display:block"><img src="images/banner1.jpg" alt="" width="1000" height="337"></li><li><img src="images/banner2.jpg" alt="" width="1000" height="337"></li><li><img src="images/banner3.jpg" alt="" width="1000" height="337"></li></ul><ul class="anniu"><li class="on"></li><li></li><li></li></ul><span class="left"></span> <span class="right"></span> </div></div></div><div id="content"><div class="aboutbox"><div class="leftbox"><h1>公益知识</h1><p>公益是公共利益事业的简称。这是为人民服务不求回报的一种通俗讲法。指有关社会公众的福祉和利益。
“公益”一词至迟在1887年已经在中国出现并被使用,且被写入清光绪三十四年(1908年)12月27日颁布的《城镇乡地方自治章程》中。社会公益组织,一般是指那些非政府的、不把利润最大化当作首要目标,且以社会公益事业为主要追求目标的社会组织。
早先的公益组织主要从事人道主义救援和贫民救济活动,很多公益组织起源于慈善机构。<br><a href="about.html" class="more">查看更多>></a></p></div><div class="rightbox"><h1>最新新闻</h1><ul class="c-box1 clearfix"><?phpinclude("config.php");//引入配置文件$sql = 'select * from news order by time desc limit 6';//获取最新发布的6条新闻$result = mysqli_query($link, $sql) or die('数据库操作失败:' . mysqli_error($link));while ($row = mysqli_fetch_assoc($result)) {?>
<li><a href="news_show.php?id=<?php echo $row['id'] ?>"><?php echo $row['name'] ?></a> <span><?php echo date('Y-m-d',strtotime($row['time'])); ?></span></li><?php } ?></ul></div></div></div><div class="contact"><div class="contact_box clearfix"><div class="centerC"><h2>联系我们</h2><p> 邮箱:huanbaogongyi@gongyi.com.cn wemax@gongyi.com.cn</p><p>电话:010-88152145</p><p>地址:北京市西城区复兴门内大街299号</p></div></div></div><div id="foot"><div class="foot-box">友情链接:<a href="http://igongyi.cntv.cn/huanbaosp/" target="_blank">央视公益</a> |<a href="https://gongyi.qq.com/tccf/pro/project_3.htm" target="_blank">腾讯公益</a> |<a href="https://gongyi.163.com/special/ls/" target="_blank">网易公益</a></div></div><script type="text/javascript" src="js/toggle.js"></script></body></html>
首页代码如上。
关键代码:
配置文件config.php,链接数据库代码
<?php
header("content-type:text/html;charset=utf-8");
define('HOST', 'localhost');//定义服务名称
define('USER', 'root');//服务器账户
define('PASS', 'root');//服务器密码
define('DBNAME', 'gongyihuanbao');//数据库名字//链接数据库
$link = @mysqli_connect(HOST, USER, PASS) or die('数据库连接失败,检查配置信息!');
mysqli_select_db($link, DBNAME) or die('数据库选择失败:' . mysqli_error($link));
mysqli_set_charset($link, 'utf8'); //设置字符集?>
获取数据列表关键代码
<ul class="c-box1 clearfix"><?phpinclude("config.php");//引入配置文件$sql = 'select * from news order by time desc limit 6';//获取最新发布的6条新闻$result = mysqli_query($link, $sql) or die('数据库操作失败:' . mysqli_error($link));while ($row = mysqli_fetch_assoc($result)) {?><li><a href="news_show.php?id=<?php echo $row['id'] ?>"><?php echo $row['name'] ?></a><span><?php echo date('Y-m-d', strtotime($row['time'])); ?></span></li><?php } ?></ul>
2、该系统包含前后台
3、管理员登录后增删改查新闻信息,前台展示新闻,图片轮播
4、共2个数据表:管理员表、新闻表
查看更多效果图及功能请进入http://amm.atao188.cn/index/view/1012.html
这篇关于php公益环保网的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!