iT邦幫忙

DAY 17
4

[鐵鷹練成]CodeIgniter + Bootstrap系列 第 14

[鐵鷹練成]CI之留言板[準備]

  • 分享至 

  • xImage
  •  

開始著手coding.....
先創好資料表 和前置作業
tabel gbook
1.id int
2.content text
3.user varchar
4.time varchar

在controllers/底下新增
gbook.php

<?php
class gbook extends CI_Controller{
   
    function __construct() {
        parent::__construct();
        $this->load->model('gbook_sql');
        $this->load->helper('url');
    }
   
}
?>

在models/底下新增
gbook_sql.php

<?php
class gbook_sql extends CI_Model{
   
    function __construct() {
        parent::__construct();
         $this->load->database();
    }
   
}
?>

在views/底下新增
gbook.php

<?php
/*---------------------------------------*/
//........ 此頁面請放在view資料夾底下.......//
/*---------------------------------------*/
$link = 'http://localhost/test/';
?>

<html xmlns="http://www.w3.org/1999/xhtml">

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>公佈欄</title>
<!--以下是 Bootstrap 的文件包-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="<?=$link;?>css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="<?=$link;?>css/bootstrap.min.css" rel="stylesheet" media="screen">
<script src="<?=$link;?>js/jquery.js"></script>
<script src="<?=$link;?>js/bootstrap.min.js"></script>
<style>
#heig{
     height:10px;
}
#color{
     background-color: #E5E5E5;
}
</style>


<!--"container"為固定置中,請參考 http://kkbruce.tw/Bootstrap/Scaffolding 佈局篇-->
<div class="container">

</div>

待續....


上一篇
[鐵鷹練成]CI之留言板[架構與資料表]
下一篇
[鐵鷹練成]CI之留言板[view]
系列文
[鐵鷹練成]CodeIgniter + Bootstrap31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言