PHP and MySQL Web Development (PHP和MySQL Web开发)第五版 免积分下载

本书描述

使用php和mysql构建数据库驱动web应用程序的最终指南。

PHP和MySQL是流行的开源技术,它们是快速开发数据库驱动的web应用程序的理想选择。php是一种强大的脚本语言,旨在使开发人员能够快速创建功能强大的web应用程序,而MySQL是一个快速、可靠的数据库,它与php很好地集成在一起,适合动态的基于Internet的应用程序。

PHP和MySQLWeb开发展示了如何将这些工具结合起来生成有效的、交互式的Web应用程序。它清楚地描述了php语言的基础知识,说明了如何建立和使用MySQL数据库,然后说明如何使用php与数据库和服务器交互。

这本实用的、动手操作的书一直集中在现实世界的应用程序上,甚至在介绍性章节中。作者涵盖了安全和身份验证的重要方面,因为它们涉及到构建一个真实世界的网站,并向您展示了如何在php和mysql中实现这些方面。他们还通过在应用程序开发中使用javascript向您介绍了前端和后端技术的集成。

本书的最后一部分描述了如何处理现实世界的项目,并引导读者了解几个项目的设计、规划和构建,包括:

      用户认证和个性化

     基于网络的电子邮件

     社区组织者

PHP和MySQLWeb开发的第五版已被彻底更新、修订和扩展,通过版本5.6和7,以及在最近的MySQL稳定版本中引入的特性,涵盖了php中的开发。

目录

Part I: Using PHP

Chapter 1 PHP Crash Course

Chapter 2 Storing and Retrieving Data

Chapter 3 Using Arrays

Chapter 4 String Manipulation and Regular Expressions

Chapter 5 Reusing Code and Writing Functions

Chapter 6 Object-Oriented PHP

Chapter 7 Error and Exception Handling

Part II: Using MySQL

Chapter 8 Designing Your Web Database

Chapter 9 Creating Your Web Database

Chapter 10 Working with Your MySQL Database

Chapter 11 Accessing Your MySQL Database from the Web with PHP

Chapter 12 Advanced MySQL Administration

Chapter 13 Advanced MySQL Programming

Part III: Web Application Security

Chapter 14 Web Application Security Risks

Chapter 15 Building a Secure Web Application

Chapter 16 Implementing Authentication Methods with PHP

Part IV: Advanced PHP Techniques

Chapter 17 Interacting with the File System and the Server

Chapter 18 Using Network and Protocol Functions

Chapter 19 Managing the Date and Time

Chapter 20 Internationalization and Localization

Chapter 21 Generating Images

Chapter 22 Using Session Control in PHP

Chapter 23 Integrating JavaScript and PHP

Chapter 24 Other Useful Features

Part V: Building Practical PHP and MySQL Projects

Chapter 25 Using PHP and MySQL for Large Projects

Chapter 26 Debugging and Logging

Chapter 27 Building User Authentication and Personalization

Part VI: Appendix

Appedix A: Installing Apache, PHP, and MySQL

扫描下面二维码,关注我的微信公众号,发送电子书名,可免费获取你需要的电子书

下载地址:PHP and MySQL Web Development 5th.Edition

更多电子书下载,请访问:IE布克斯网

点赞
收藏

评论区

加载中...

相关推荐

MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1

文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

MySQL部分从库上面因为大量的临时表tmp_table造成慢查询

背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_

皕杰报表之UUID

​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

2020年前端实用代码段,为你的工作保驾护航

有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )