基于linux的校園通訊錄網站的研究與設計.doc




約35頁DOC格式手機打開展開
基于linux的校園通訊錄網站的研究與設計,基于linux的校園通訊錄網站的研究與設計1.34萬字我自己的畢業(yè)論文,原創(chuàng)的,已經通過校內系統(tǒng)檢測,僅在本站獨家出售,重復率低,大家放心下載使用摘要 隨著互聯(lián)網的快速發(fā)展,如今,web網頁能夠做到動態(tài)地與用戶交互,甚至可以作為用戶的存儲平臺,用戶可以將各種信息通過網頁保存在互聯(lián)網上,能夠非常簡便快捷地上傳,下載,查詢...


內容介紹
此文檔由會員 淘寶大夢 發(fā)布
基于Linux的校園通訊錄網站的研究與設計
1.34萬字
我自己的畢業(yè)論文,原創(chuàng)的,已經通過校內系統(tǒng)檢測,僅在本站獨家出售,重復率低,大家放心下載使用
摘要 隨著互聯(lián)網的快速發(fā)展,如今,Web網頁能夠做到動態(tài)地與用戶交互,甚至可以作為用戶的存儲平臺,用戶可以將各種信息通過網頁保存在互聯(lián)網上,能夠非常簡便快捷地上傳,下載,查詢,瀏覽信息。因此,以校園為研究對象,研究面向網絡的存儲通訊錄,使用Web平臺來存儲學生的信息,實現(xiàn)大范圍準確查找聯(lián)系人,打造便捷的校園信息服務平臺,完善校園信息服務,給校園信息的管理和維護提供更便捷、更安全的服務系統(tǒng)而開發(fā)的校園信息通訊錄系統(tǒng)。
通訊錄網站分為兩部分,一是管理員部分,管理員作為后端,統(tǒng)籌管理班級和學生,負責創(chuàng)建班級,添加學生,編輯學生信息等;另一部分是學生模塊,學生登錄之后能夠查詢,更新自己的聯(lián)系信息,并能夠實現(xiàn)班級留言,文件共享等。在此研究中,都使用密碼驗證登錄,來保護學生信息安全。
通訊錄網站的平臺是以Linux為操作系統(tǒng),使用Apache作為Web服務器,Mysql作為數(shù)據庫,PHP為編寫動態(tài)網頁語言。這一組合稱為LAMP架構,被譽為最強大的網站解決方案,全球70%的網絡訪問流量由這一架構提供。其為開源軟件,成本低廉、部署靈活、快速開發(fā)、安全穩(wěn)定,資源豐富,因此作為研究校園通訊錄網站的首選平臺。只要在Linux上安裝完成Apache,Mysql ,PHP 之后,作簡要配置,最后將網頁源代碼放入/var/www/html/contacts/目錄下,通過瀏覽器即可訪問。
關鍵詞:Linux;Apache;Mysql;PHP;LAMP;通訊錄;網頁
Research and Design of Linux-based campus contacts website
Abstract With the rapid development of the Internet , and now , Web pages can be dynamically interact with the user , the user can even be used as a storage platform, users can save all kinds of information on the Internet via the web , can be very easily and quickly upload, download, query, browse information . Therefore, to campus for the study, research-oriented network storage contacts book , use the Web platform to store student information to achieve a wide range of accurate and find contacts , to create convenient campus information service platform , improve campus information services to the campus information management and maintenance to provide more convenient and more secure services and the development of campus information system address book system .
Website address book is divided into two parts, one part of the administrator , the administrator backend , integrated management classes and students , is responsible for creating classes, add students, edit student information ; another part of the student module , students log can then query update their contact information , and the ability to achieve class message , file sharing and so on. In this study, the use Password Authentication to protect student information security.
Contacts website is Linux platform for the operating system, use the Apache Web server as , MySQL as database , PHP language for writing dynamic web pages . This combination is called LAMP architecture , known as the most powerful website solution , 70% of global network traffic provided by this architecture . It is open source software, low cost, deployment flexibility , rapid development, security and stability, abundant resources, and therefore the site as a research campus book platform of choice . Just after the completion of the installation on Linux Apache, MySQL, PHP, briefly configuration , and finally into the page source code under / var / www / html / contacts / directory can be accessed through a browser.
Key words Linux ; Apache ; MySQL ; PHP ; LAMP ; contacts ; website
目 錄
第一章 緒 論 1
1.1 研究背景 1
1.2 研究發(fā)展趨勢 2
1.3 研究目的及意義 3
1.4 論文研究的主要內容 3
第二章 系統(tǒng)架構及原理 5
2.1 基于Linux的系統(tǒng)結構 5
2.2 系統(tǒng)工作原理 5
2.3 網站結構及功能 6
第三章 系統(tǒng)架構的技術介紹 8
3.1 Linux操作系統(tǒng) 8
3.2 Apache Web服務器 8
3.3 MySQL數(shù)據庫 9
3.4 PHP語言 10
第四章 系統(tǒng)的安裝與配置 11
4.1 安裝配置Linux系統(tǒng) 11
4.2 安裝配置Apache 13
4.2.1 Apache的安裝 13
4.2.2 配置Apache.........................................................................................................14
4.3 安裝配置Mysql 14
4.3.1 安裝Mysql 14
4.3.2 配置MySQL 15
4.4 安裝配置PHP 15
4.4.1 安裝PHP 15
4.4.2 配置PHP 16
第五章 網站的設計與調試 18
5.1 PHP 相關語法介紹 18
5.2 PHP連接MySQL數(shù)據庫 19
5.3 網站模塊介紹 20
5.3.1 用戶登錄模塊 20
5.3.2 管理員管理模塊 21
5.3.3 學生訪問模塊 23
第六章 總結及展望 28
6.1總結 28
6.2展望 28
致謝.............................................................................................................................................. 30
參考文獻 31
1.34萬字
我自己的畢業(yè)論文,原創(chuàng)的,已經通過校內系統(tǒng)檢測,僅在本站獨家出售,重復率低,大家放心下載使用
摘要 隨著互聯(lián)網的快速發(fā)展,如今,Web網頁能夠做到動態(tài)地與用戶交互,甚至可以作為用戶的存儲平臺,用戶可以將各種信息通過網頁保存在互聯(lián)網上,能夠非常簡便快捷地上傳,下載,查詢,瀏覽信息。因此,以校園為研究對象,研究面向網絡的存儲通訊錄,使用Web平臺來存儲學生的信息,實現(xiàn)大范圍準確查找聯(lián)系人,打造便捷的校園信息服務平臺,完善校園信息服務,給校園信息的管理和維護提供更便捷、更安全的服務系統(tǒng)而開發(fā)的校園信息通訊錄系統(tǒng)。
通訊錄網站分為兩部分,一是管理員部分,管理員作為后端,統(tǒng)籌管理班級和學生,負責創(chuàng)建班級,添加學生,編輯學生信息等;另一部分是學生模塊,學生登錄之后能夠查詢,更新自己的聯(lián)系信息,并能夠實現(xiàn)班級留言,文件共享等。在此研究中,都使用密碼驗證登錄,來保護學生信息安全。
通訊錄網站的平臺是以Linux為操作系統(tǒng),使用Apache作為Web服務器,Mysql作為數(shù)據庫,PHP為編寫動態(tài)網頁語言。這一組合稱為LAMP架構,被譽為最強大的網站解決方案,全球70%的網絡訪問流量由這一架構提供。其為開源軟件,成本低廉、部署靈活、快速開發(fā)、安全穩(wěn)定,資源豐富,因此作為研究校園通訊錄網站的首選平臺。只要在Linux上安裝完成Apache,Mysql ,PHP 之后,作簡要配置,最后將網頁源代碼放入/var/www/html/contacts/目錄下,通過瀏覽器即可訪問。
關鍵詞:Linux;Apache;Mysql;PHP;LAMP;通訊錄;網頁
Research and Design of Linux-based campus contacts website
Abstract With the rapid development of the Internet , and now , Web pages can be dynamically interact with the user , the user can even be used as a storage platform, users can save all kinds of information on the Internet via the web , can be very easily and quickly upload, download, query, browse information . Therefore, to campus for the study, research-oriented network storage contacts book , use the Web platform to store student information to achieve a wide range of accurate and find contacts , to create convenient campus information service platform , improve campus information services to the campus information management and maintenance to provide more convenient and more secure services and the development of campus information system address book system .
Website address book is divided into two parts, one part of the administrator , the administrator backend , integrated management classes and students , is responsible for creating classes, add students, edit student information ; another part of the student module , students log can then query update their contact information , and the ability to achieve class message , file sharing and so on. In this study, the use Password Authentication to protect student information security.
Contacts website is Linux platform for the operating system, use the Apache Web server as , MySQL as database , PHP language for writing dynamic web pages . This combination is called LAMP architecture , known as the most powerful website solution , 70% of global network traffic provided by this architecture . It is open source software, low cost, deployment flexibility , rapid development, security and stability, abundant resources, and therefore the site as a research campus book platform of choice . Just after the completion of the installation on Linux Apache, MySQL, PHP, briefly configuration , and finally into the page source code under / var / www / html / contacts / directory can be accessed through a browser.
Key words Linux ; Apache ; MySQL ; PHP ; LAMP ; contacts ; website
目 錄
第一章 緒 論 1
1.1 研究背景 1
1.2 研究發(fā)展趨勢 2
1.3 研究目的及意義 3
1.4 論文研究的主要內容 3
第二章 系統(tǒng)架構及原理 5
2.1 基于Linux的系統(tǒng)結構 5
2.2 系統(tǒng)工作原理 5
2.3 網站結構及功能 6
第三章 系統(tǒng)架構的技術介紹 8
3.1 Linux操作系統(tǒng) 8
3.2 Apache Web服務器 8
3.3 MySQL數(shù)據庫 9
3.4 PHP語言 10
第四章 系統(tǒng)的安裝與配置 11
4.1 安裝配置Linux系統(tǒng) 11
4.2 安裝配置Apache 13
4.2.1 Apache的安裝 13
4.2.2 配置Apache.........................................................................................................14
4.3 安裝配置Mysql 14
4.3.1 安裝Mysql 14
4.3.2 配置MySQL 15
4.4 安裝配置PHP 15
4.4.1 安裝PHP 15
4.4.2 配置PHP 16
第五章 網站的設計與調試 18
5.1 PHP 相關語法介紹 18
5.2 PHP連接MySQL數(shù)據庫 19
5.3 網站模塊介紹 20
5.3.1 用戶登錄模塊 20
5.3.2 管理員管理模塊 21
5.3.3 學生訪問模塊 23
第六章 總結及展望 28
6.1總結 28
6.2展望 28
致謝.............................................................................................................................................. 30
參考文獻 31