php公益环保网

2023-12-11 18:40
文章标签 php 公益 环保网

本文主要是介绍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>

首页代码如上。

关键代码:

  1. 配置文件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'); //设置字符集?>
  1. 获取数据列表关键代码

          <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公益环保网的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/481711

相关文章

PHP执行php.exe -v命令报错的解决方案

《PHP执行php.exe-v命令报错的解决方案》:本文主要介绍PHP执行php.exe-v命令报错的解决方案,文中通过图文讲解的非常详细,对大家的学习或工作有一定的帮助,需要的朋友可以参考下... 目录执行phpandroid.exe -v命令报错解决方案执行php.exe -v命令报错-PHP War

PHP原理之内存管理中难懂的几个点

PHP的内存管理, 分为俩大部分, 第一部分是PHP自身的内存管理, 这部分主要的内容就是引用计数, 写时复制, 等等面向应用的层面的管理. 而第二部分就是今天我要介绍的, zend_alloc中描写的关于PHP自身的内存管理, 包括它是如何管理可用内存, 如何分配内存等. 另外, 为什么要写这个呢, 因为之前并没有任何资料来介绍PHP内存管理中使用的策略, 数据结构, 或者算法. 而在我们

php中json_decode()和json_encode()

1.json_decode() json_decode (PHP 5 >= 5.2.0, PECL json >= 1.2.0) json_decode — 对 JSON 格式的字符串进行编码 说明 mixed json_decode ( string $json [, bool $assoc ] ) 接受一个 JSON 格式的字符串并且把它转换为 PHP 变量 参数 json

如何将文件夹里的PHP代码放到一个文件里

find ./dir -name "*.php" -exec 'cat' {} \; > dir.out

PHP抓取网站图片脚本

方法一: <?phpheader("Content-type:image/jpeg"); class download_image{function read_url($str) { $file=fopen($str,"r");$result = ''; while(!feof($file)) { $result.=fgets($file,9999); } fclose($file); re

PHP防止SQL注入详解及防范

SQL 注入是PHP应用中最常见的漏洞之一。事实上令人惊奇的是,开发者要同时犯两个错误才会引发一个SQL注入漏洞。 一个是没有对输入的数据进行过滤(过滤输入),还有一个是没有对发送到数据库的数据进行转义(转义输出)。这两个重要的步骤缺一不可,需要同时加以特别关注以减少程序错误。 对于攻击者来说,进行SQL注入攻击需要思考和试验,对数据库方案进行有根有据的推理非常有必要(当然假设攻击者看不到你的

PHP防止SQL注入的方法(2)

如果用户输入的是直接插入到一个SQL语句中的查询,应用程序会很容易受到SQL注入,例如下面的例子: $unsafe_variable = $_POST['user_input'];mysql_query("INSERT INTO table (column) VALUES ('" . $unsafe_variable . "')"); 这是因为用户可以输入类似VALUE”); DROP TA

PHP防止SQL注入的方法(1)

(1)mysql_real_escape_string – 转义 SQL 语句中使用的字符串中的特殊字符,并考虑到连接的当前字符集 使用方法如下: $sql = "select count(*) as ctr from users where username ='".mysql_real_escape_string($username)."' and password='". mysql_r

Linux系统安装php开发环境

Linux系统centos6.5 PHP5.6 MySQL5.6 Nginx1.7 yum安装依赖库 yum install -y make cmake gcc gcc-c++ autoconf automake libpng-devel libjpeg-devel zlib libxml2-devel ncurses-devel bison \libtool-ltdl-devel li

PHP字符串全排列

方法一: $str = 'abc';$a =str_split($str);perm($a, 0, count($a)-1);function perm(&$ar, $k, $m) {if($k == $m){ echo join('',$ar), PHP_EOL;}else {for($i=$k; $i<=$m; $i++) {swap($ar[$k], $ar[$i]);perm($ar