Bootstrap

PHP实战 新闻管理系统 使用到了bootstrap框架

刚刚接触 PHP 仿照视频 写了个新闻管理系统 其中也使用到了bootstrap框架

写下来整理一下思路。

这是个很简单的系统,首先是建立数据库表。

mysql>create database newsdb

mysql> create table news(
-> id int unsigned not null auto_increment primary key,//这是新闻的id
-> title varchar(64) not null,//这是新闻的标题
-> keywords varchar(64) not null,//这是新闻的关键字
-> author varchar(16) not null,//这是新闻的作者
-> addtime int unsigned not null,//这是新闻的添加时间
-> content text not null);//这是新闻的内容

这样,数据库表就建成了,下面开始写页面。

首先写了一个数据库配置文件dbconfig.php:

<?php

define(HOST,"localhost");//主机名

define(USER,"root");//用户名

define(PASS,"");//密码

define(DBNAME,"newsdb");//数据库名

 ?>

然后是一个menu.php文件

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>HTML5&BootStrap</title>
<link href="bootstrap-3.2.0-dist/css/bootstrap.css" rel="stylesheet">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="prettify-4-Mar-2013/prettify.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body onLoad="prettyPrint()">
<style>
body{background:orange;}
@media(max-width:997px){body{background:#0FC;}}
</style>
<div class="container">
  <nav class="navbar navbar-default" role="navigation">
    <div class="container-fluid"> 
      <!-- Collect the nav links, forms, and other content for toggling -->
      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
        <ul class="nav navbar-nav">
        <h2>新闻管理系统</h2>
          <li><a href="index.php">浏览新闻</a></li>
          <li><a href="add.php">发布新闻</a></li>
          <hr>
        </ul>
      </div>
      <!-- /.navbar-collapse --> 
    </div>
    <!-- /.container-fluid --> 
  </nav>
</div>
<script type="text/javascript" src="bootstrap-3.2.0-dist/js/jquery-1.9.1.min.js"></script> 
<script type="text/javascript" src="bootstrap-3.2.0-dist/js/bootstrap.js"></script> 
<script type="text/javascript" src="prettify-4-Mar-2013/prettify.js"></script>
</body>

</html>

上面两步简单的工作做好之后,就该进行主页index.php的编写了:

首先,导入导航栏men

;