この記事ではCodeigniterフレームワークをベースにした学生情報システムサイトのダイナミックパブリッシング機能を中心に紹介し、詳細を分析しました動的サイトに関連するデータベース SQL ステートメント、MVC関数、および各モジュールの実装テクニックを必要とする友人はそれを参照できます
この記事では、Codeigniter フレームワークに基づく学生情報システム サイトの動的公開機能について説明し、共有します。参考までに、詳細は次のとおりです。
これは動的サイトであるため、データベース テーブルが存在する必要があります。ここでデータベース テーブルを見てみましょう:
CREATE TABLE IF NOT EXISTS `student`( //主键id `id` int(11) NOT NULL AUTO_INCREMENT, //学生姓名 `s_name` varchar(64) NOT NULL, //学生家长的姓名 `p_name` varchar(64) NOT NULL, //学生的家庭住址 `address` varchar(100) NOT NULL, //所在城市 `city` varchar(30) NOT NULL, //所在国家 `state` varchar(30) NOT NULL, //所在地区的邮政编码 `zip` varchar(20) NOT NULL, //电话 `phone` varchar(15) NOT NULL, //邮件 `email` varchar(20) NOT NULL, //主键设置 PRIMARY KEY(`id`) )ENGINE=INNODB DEFAULT CHARSET=UTF8 AUTO_INCREMENT=1;
*注:ここで説明する必要がある 2 つの箇所:
1.「IF NOT EXISTS」: テーブル作成時にデータの前に「IF NOT EXISTS」を追加すると、テーブルが既に存在する場合でも、正常に実行されました。
2."ENGINE=INNODB ": これはデータベースのエンジン設定です。一般的に使用される mysql データベース エンジンには ISAM、MYISAM、HEAP などが含まれます。データベース接続を確認します。.applicationconfigdatabase.php ファイルを開いて内部に設定します。データベース変数パラメーターについては、.applicationconfigconfig.php ファイルに基本 URL を設定します。私の場合、基本 URL は localhost/codeigniter/
です。 mvc アイデアの設計を見てみましょう
まず、.applicationcontrollers ファイル ディレクトリを開き、その中に Student.phpcontroller
を作成します: ここでは、最初に Student コントローラーを通じてテストします。 helloworld を出力します。アクセス パスが localhost/codeigniter/index であることを覚えておいてください。php/student/indexclass student extends CI_Controller{ //student controller construct public function construct(){ parent::construct(); } //index test function public function index(){ echo "helloworld"; } }出力: helloworldこれを変更して、次のコードを見てみましょう:
class student extends CI_Controller{ //student controller public function construct(){ parent::construct(); } //define a array,name is arraydata, it have three parameters protected $arraydata=array( 'title'=>'Classroom:Home page', 'headline'=>'welcome to the classroom Mangement System', 'include'=>'student_index' ); //index function public function index(){ $this->load->view('template',$this->arraydata); } }このコードには
viewが必要です
、template.php<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Strict//EN' 'http://www.w3.org/TR/html4/strict.dtd'> <html> <head> <meta http-equiv='Content-Type' content='text/html; charset=utf-8'> <title><?php echo $title; ?></title> </head> <body> <h1><?php echo $headline; ?></h1> <?php $this->load->view($include)?> </body> </html>その中に:
this−>load−>view(include);には別のビューファイルstudent_index.phpファイルが含まれていますstudent_index.php:
<p>Congratulations. Your initial setup is complete!</p>共同出力:
welcome to the classroom Mangement System Congratulations. Your initial setup is complete!
データのCURD
Cコントローラー
まず見てみましょう データを追加するプロセスで、Studentコントローラーにadd()メソッドを追加します
class student extends CI_Controller{ //student controller public function construct(){ parent::construct(); } //new add function public function add(){ $this->load->helper('form'); //display information for the view $data['title']='Classroom:Add Page'; $data['headline']='Add data'; $data['include']='student_add'; //upload view $this->load->view('template',$data); } //create function public function create(){ $this->load->helper('url'); $this->load->model('MStudent','',TRUE); $this->MStudent->addData($_POST); redirect('student/add','reflesh'); } //update function public function update(){ //upload codeigniter library $this->load->library('table'); $this->load->model('MStudent','',TRUE); $student_query=$this->MStudent->updateData(); $update_table=$this->table->generate($student_query); //display information for the view $data['title']='Classroom:Update Page'; $data['headline']='Update Page'; $data['include']='update_student'; $data['updatetable']=$update_table; $this->load->view('template',$data); } //index function public function index(){ $data['title']='Classroom:Home page'; $data['headline']='welcome to classroom Mangement System'; $data['include']='student_index'; $this->load->view('template',$this->arraydata); } }
V view
template .php
<html> <head> <title><?php echo $title;?></title> </head> <body> <h1><?php echo $headline ?></h1> <?php $this->load->view($include)?> </body> </html>student_add.php
<?php echo form_open('student/create'); $field_name=array('s_name','p_name','address','city','state','zip','phone','email'); foreach($field_name as $value){ echo "<p>".$value.":" echo form_input(array('name'=>$value)); echo "</p>" } form_submit('','Add'); form_close(); ?>update_student .php
<?php echo $updatetable; ?>
Mモデル
class MStudent extends CI_Model{ public function addData($data){ $this->db->insert('student',$data); } public function updateData(){ $this->db->get('student'); } }
以上がCodeigniterフレームワークをベースにした学生情報システムサイトの動的公開機能コード事例の詳細説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。