注冊 | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當前位置: 首頁出版圖書科學技術計算機/網(wǎng)絡軟件與程序設計網(wǎng)絡編程PHP4+MySQL完整自學方案

PHP4+MySQL完整自學方案

PHP4+MySQL完整自學方案

定 價:¥58.00

作 者: 趙啟志編著
出版社: 中國鐵道出版社
叢編項:
標 簽: php

購買這本書可以去


ISBN: 9787113040260 出版時間: 2001-02-01 包裝: 精裝
開本: 26cm 頁數(shù): 522 字數(shù):  

內(nèi)容簡介

  本書為市面上最新的PHP與MySQL相結(jié)合的完整自學教材。內(nèi)容以Redhat為發(fā)展平臺,主要針對PHP4與MySQL做介紹。詳細講解了PHP4的相關語法,部分函數(shù)還配有特別設計的綜合范例,以方便讀者學習。MySQL進入3.23版本后,除了結(jié)合SleepyCat Software的Berkeley DB,以達成Transaction功能外,更增加了多種Table Types支持,最引人注意的應該非HEAP Tables(也就是存放在存儲器內(nèi)的Table)莫屬,當然License的改變也為人津津樂道。本書除了一一介紹上述的特色之外,也將所有相關的Scripts用法整理出來,提供給想進一步掌握MySQL的朋友。為了讓讀者更快掌握PHP4與MySQL,書中加入了許多應用范例,并附上完整程序代碼供初學者參考。

作者簡介

暫缺《PHP4+MySQL完整自學方案》作者簡介

圖書目錄

Chapter1 簡介
1-1 數(shù)據(jù)庫的強大功能
您用計算機做什么事
數(shù)據(jù)庫能做什么
數(shù)據(jù)庫在Internet的應用
業(yè)界應用現(xiàn)況
1-2 RedhatLinux與Apache
關于RedhatLinux(http://www.redhat.org)
世界占有率第一的HTTP Sever-Apache(http://www.apache.org)
1-3 MySQL(http://www.mysql.com)
MySQL概述
MySQL的特色
License Goes GPL
中文兼容
關于Transaction
網(wǎng)絡資源
1-4 PHP(http://www.php.net)
簡單好用的PHP
PHP能做什么
強大的數(shù)據(jù)庫整合功能
PHP是免費的
PHP與ASP、CGI的比較
網(wǎng)絡資源
Chapter2 安裝前的準備
2-1 硬件需求
2-2 Linux安裝時注意事項
Partitions
AddUser
Packages
2-3 其它相關軟件
Sleepycat’s Berkeley DB(BDB)
IMAP-UW
Chapter3 開始安裝MySQL、PHP與Apache
3-1 取得最新版本
3-2 安裝MySQL
MySQL版本命名的原則
以Redhat Linux6.x安裝
3-3 安裝MySQL遇到的問題
3-4 安裝PHP及Apache
3-5 安裝Zend Optimizer
Chapter4 進入MySQL的世界
4-1 設計數(shù)據(jù)庫的概念
Client-Server結(jié)構(gòu)
如何決定Table結(jié)構(gòu)
4-2 激活/停止MySQL
建立Grant Tables
MySQL的數(shù)據(jù)庫目錄
切換用戶執(zhí)行Daemon
激活/停止MySQL daemon
測試MySQL
遇到問題
4-3 權限管理中心—“mysql”數(shù)據(jù)庫
如何聯(lián)機到數(shù)據(jù)庫
mysql數(shù)據(jù)庫
權限操作模式
4-4 設置privileges的方法
建議您遵循的原則
改變superuser
設置root密碼
使用GRANT增加新用戶
直接用Insert、Update
新的權限設置何時生效
使用mysqlaccess檢查權限
4-5 Access Denied存取被拒
4-6 增加安全的考慮
MySQL系統(tǒng)部分
mysqld關于安全的選項
Chapter5 MySQL語法及函數(shù)
5-1 MySQL使用的語法概述
Strings
Numbers
十六進制(Hexadecimal)
自定義變量
命名的問題
5-2 MySQL的Table Types
簡介
TST與NTST的區(qū)別
MylSAM Tables
ISAM Tables
HEAP Tables
BDB or Berkeley DB Tables
5-3 MySQL的Data Types
Numeric Types
Date and Time Types
String Types
CHAR與VARCHAR
選擇適當?shù)腄ata Type
5-4 重要命令說明
DATABASE相關
TABLE相關
存取數(shù)據(jù)
顯示狀態(tài)
批注
5-5 常用函數(shù)
使用括號()
四則運算
位運算
邏輯運算
比較運算
字符串比較
CAST OPERATOR
流程控制
數(shù)值函數(shù)
字符串函數(shù)
日期時間函數(shù)
常和GROUP BY一起使用的函數(shù)
5-6 外部命令
Isamchk
Myisamchk
Myisampack
mysql
mysql.server
mysql_install_db 
mysqlaccess
mysqladmin
mysqlbug
Mysqldump
mysqlimport
mysqlshow
pack_isam
safe_mysqld
5-7 my.cnf
Chapter6 給Apache一雙翅膀——使用PHP
6-1 開始之前
6-2 基本語法
命令分隔(Instruction separation)
批注(Comments)
6-3 數(shù)據(jù)類型
Integers
Floating Point Numbers
Strings
Arrays
Objects
Type Juggling
Type casting
6-4 變量(Variables)
概述
內(nèi)定變量(Predefined Vaiables)
變量影響范圍(Variable Scope)
以變量命名的變量(Variable Variables)
外來變量(Variables from outside PHP)
6-5 常數(shù)
6-6 Expressions
6-7 Operators
數(shù)值操作數(shù)(Arithmetic Operators)
指定操作數(shù)(Assignment Operators)
位操作數(shù)(Bitwise Operators)
比較操作數(shù)(Comparison Operators)
條件操作數(shù)(Conditional Operators)
錯誤控制操作數(shù)(Error control Operators)
執(zhí)行操作數(shù)(Execution Operators)
增減操作數(shù)(Incrementing/Decrementing Operators)
邏輯操作數(shù)
優(yōu)先等級(Operator Precedence)
字符串操作數(shù)(String Operators)
6-8 控制結(jié)構(gòu)(Control Structures)
if
else
elseif
不同的表示法
while
do…while
for
foreach
break
continue
switch
require()
include()
require_once()
include_once()
6-9 Functions
自定義函數(shù)(User-defined Functions)
函數(shù)的參數(shù)(Function Arguments)
返回值(Returning Values)
old_function
以變量為名的函數(shù)(Variable Functions)
6-10 Classes and Objects
6-11 聯(lián)機管理(Connection Handling)
6-12 php.ini
Chapter7 PHP常用函數(shù)介紹
7-1 Apache Specific Functions
7-2 Array Functions
7-3 Classes/Objects Functions
概述
函數(shù)
7-4 Date/Time Functions
7-5 Directory Functions
7-6 DOM XML Functions
概述
有正式文件說明的函數(shù)
說明文件還未齊全的函數(shù)
7-7 Filesystem Functions
7-8 FTP Functions
概述
函數(shù)
7-9 HTTP Functions
7-10 Image functions
概述
函數(shù)
7-11 IMAP,POP3 and NNTP functions
概述
函數(shù)
綜合范例
7-12 Mail Functions
7-13 Mathematical Functions
概述
函數(shù)
7-14 Miscellaneous Functions
7-15 MySQL Functions
概述
函數(shù)
7-16 Network Functions
7-17 PHP options&information
7-18 Program Execution Functions
7-19 Regular Expression Functions
綜合范例
7-20 Session Handling Functions
概述
函數(shù)
7-21 String Functions
7-22 URL Functions
7-23 Variable functions
7-24 XML Parser Functions
概述
函數(shù)
7-25 其它
Chapter8 MySQL與PHP的水乳交融
8-1 先練PHP基本功
8-2 使用PHP與MySQL的基本概念
8-3 建立及規(guī)劃數(shù)據(jù)庫
8-4 輸入數(shù)據(jù)
8-5 輸出數(shù)據(jù)
8-6 整合HTML
Chapter9 精選范例
9-1 Form Mail
Form的部分
Scipt部分
使用流程控制
9-2 Cookie致歡迎詞
Cookie
HTTP USER AGENT
9-3 Session購物車
建立產(chǎn)品對象
產(chǎn)品訂購畫面
計算價錢并寫入Session
讀出Session數(shù)據(jù)
把結(jié)果用Email送出
9-4 圖形處理
9-5 Authentication
WWW Authentication
建立database及tables
會員注冊
會員登錄
9-6 文件上傳
9-7 用PHP刪除垃圾郵件
篩選沒有DNS反查的信件
篩選在黑名單中的信件
刪除郵件
9-8 XML版通訊簿
XML(eXtensible Markup Languages)
從PHP讀出
利用xmltree()
使用xmldoc()或xmldocfile()
Chapter10 應用程序集錦
10-1 MySQL GUI
10-2 MySQL APIs
10-3 phpMyAdmin
10-4 Phorum 
10-5 Web Mail
Horde IMP
FocalMail
10-6 phpMyChat
Appendix A MySQL保留字
Appendix B MySQL的標準兼容程度
MySQL extensions to ANSI SQL92
Functionality missing from MySQL
Appendix C PHP3至PHP4的改變
Appendix D PHP/F12.0到PHP3的改變
Appendix E PHP FAQs
關于track_vars
在function中使用statement
關于斷行
關于所有的header信息
關于select multiple
搭配DreamWeaver或Frontpages使用
其它
Appendix F PHP版權
Copyright(c)1998 The PHP Development Team.All rights reserved
Appendix G Apache版權
Appendix H MySQL版權
Appendix I 光盤內(nèi)容

本目錄推薦

掃描二維碼
Copyright ? 讀書網(wǎng) m.ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網(wǎng)安備 42010302001612號