Learning PHP & MySQL, 2nd Edition pdf

430 1.8K 0
Learning PHP & MySQL, 2nd Edition pdf

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

www.it-ebooks.info Learning PHP and MySQL www.it-ebooks.info Other resources from O’Reilly Related titles Essential PHP Security Learning PHP 5 Learning MySQL Mastering Regular Expressions MySQL Cookbook ™ MySQL in a Nutshell MySQL Pocket Reference PHP Cookbook ™ PHP Hacks ™ Programming PHP Web Database Applications with PHP and MySQL oreilly.com oreilly.com is more than a complete catalog of O’Reilly books. You’ll also find links to news, events, articles, weblogs, sample chapters, and code examples. oreillynet.com is the essential portal for developers interested in open and emerging technologies, including new platforms, pro- gramming languages, and operating systems. Conferences O’Reilly brings diverse innovators together to nurture the ideas that spark revolutionary industries. We specialize in document- ing the latest tools and systems, translating the innovator’s knowledge into useful skills for those in the trenches. Visit con- ferences.oreilly.com for our upcoming events. Safari Bookshelf (safari.oreilly.com) is the premier online refer- ence library for programmers and IT professionals. Conduct searches across more than 1,000 books. Subscribers can zero in on answers to time-critical questions in a matter of seconds. Read the books on your Bookshelf from cover to cover or sim- ply flip to the page you need. Try it today for free. www.it-ebooks.info Learning PHP and MySQL SECOND EDITION Michele E. Davis and Jon A. Phillips Beijing • Cambridge • Farnham • Köln • Paris • Sebastopol • Taipei • Tokyo www.it-ebooks.info Learning PHP and MySQL, Second Edition by Michele E. Davis and Jon A. Phillips Copyright © 2007, 2006 Michele E. Davis and Jon A. Phillips. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (safari.oreilly.com). For more information, contact our corporate/institutional sales department: (800) 998-9938 or corporate@oreilly.com. Editor: Simon St.Laurent Production Editor: Marlowe Shaeffer Copyeditor: Reba Libby Proofreader: Sohaila Abdulali Indexer: Ellen Troutman Zaig Cover Designer: Karen Montgomery Interior Designer: David Futato Illustrator: Jessamyn Read Printing History: June 2006: First Edition. August 2007: Second Edition. Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of O’Reilly Media, Inc. Learning PHP and MySQL, the image of kookaburra birds, and related trade dress are trademarks of O’Reilly Media, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O’Reilly Media, Inc. was aware of a trademark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher and authors assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. This book uses RepKover ™ , a durable and flexible lay-flat binding. ISBN-10: 0-596-51401-8 ISBN-13: 978-0-596-51401-3 [M] www.it-ebooks.info v Table of Contents Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ix 1. Dynamic Content and the Web . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 HTTP and the Internet 1 PHP and MySQL’s Place in Web Development 2 The Components of a PHP Application 4 Integrating Many Sources of Information 7 Requesting Data from a Web Page 11 2. Installation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 Developing Locally 15 Working Remotely 35 3. Exploring PHP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 PHP and HTML Text 39 Coding Building Blocks 43 4. PHP Decision-Making . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62 Expressions 62 Operator Concepts 64 Conditionals 71 Looping 77 5. Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 Calling Functions 87 Defining Functions 89 Object-Oriented Programming 96 www.it-ebooks.info vi | Table of Contents 6. Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107 Array Fundamentals 107 7. Working with MySQL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 122 MySQL Database 122 Managing the Database 125 Using phpMyAdmin 126 Database Concepts 131 Structured Query Language 132 8. Database Best Practices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 146 Database Design 146 Backing Up and Restoring Data 155 Advanced SQL 159 9. Getting PHP to Talk to MySQL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 179 The Process 180 Querying the Database with PHP Functions 180 Using PEAR 190 10. Working with Forms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 199 Building a Form 199 Templates 218 11. Practical PHP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 223 String Functions 223 Date and Time Functions 233 File Manipulation 238 Calling System Calls 249 12. XHTML . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 251 Why XHTML? 253 XHTML and XML Namespaces 254 XHTML Versions 254 Generating XHTML with PHP 261 13. Modifying MySQL Objects and PHP Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 263 Changing Database Objects from PHP 263 Manipulating Table Data 266 Displaying Results with Embedded Links 267 www.it-ebooks.info Table of Contents | vii Presenting a Form to Add and Process in One File 270 Updating Data 276 Deleting Data 277 Performing a Subquery 282 14. Cookies, Sessions, and Access Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 285 Cookies 285 PHP and HTTP Authentication 288 Sessions 294 Using Auth_HTTP to Authenticate 301 15. Security . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 307 Session Security 316 16. Validation and Error Handling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 325 Validating User Input with JavaScript 325 Pattern Matching 329 Redisplaying a Form After PHP Validation Fails 333 17. Sample Application . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 339 Configuration File 340 Page Framework 340 Database 343 Displaying a Postings Summary 346 Displaying a Posting and Its Comments 349 Adding and Changing Posts 352 Adding and Changing Comments 358 18. Finishing Your Journey . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 366 PHP Coding Standards 366 PEAR 371 Frameworks 372 Ajax 373 Wikis 373 Finding Help on the Web 373 Appendix. Solutions to Chapter Questions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 377 Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 391 www.it-ebooks.info www.it-ebooks.info ix Preface1 PHP and MySQL are a powerful combination that makes it easy to create web appli- cations. If you’ve been creating web pages but want to build more sophisticated sites that can grow and interact with users, PHP and MySQL let you get started easily and then build complex applications on those foundations. Our goal is to help you learn the ins and outs of PHP and MySQL and to save you some of the “Why doesn’t that work?” moments that we’ve already been through. We’ll show you what to watch for and how to fix these issues without pulling out your hair. Audience This book is for people who want to know how to create dynamic web sites. That could include graphic designers who are already working in an IT or advertising firm creating static web sites, and who may need to move forward with coding database- driven web sites. It might also include people who already know, say, Flash develop- ment and HTML markup, but need to expand their repertoire of skills to databases and programming. Assumptions This Book Makes This book assumes you understand how web browsers work and have a basic under- standing of HTML. Some understanding of JavaScript may be useful (for Chapter 16) but isn’t generally required. You might also be overqualified. If you already know how to create pages using MySQL and PHP, then you’d probably be better off with a book that is more a refer- ence than a learning book, such as Paul Hudson’s PHP in a Nutshell, or Russell Dyer’s MySQL in a Nutshell, both from O’Reilly. www.it-ebooks.info [...]... contained within the PHP framework This means that there’s no reason for you to reinvent the wheel each time you sit down to develop a PHP program; it comes with web functionality built-in While PHP is great for web application development, it doesn’t store information by itself For that, you need a database The database of choice for PHP developers is MySQL, which acts like a filing clerk for PHP- processed... accessed from PHP, and they work well together An added benefit is that PHP and MySQL run on various computer types and operating systems, including Mac OS X, Windows-based PCs, and Linux 2 | Chapter 1: Dynamic Content and the Web www.it-ebooks.info Advantages of Using PHP with MySQL There are several factors that make using PHP and MySQL together a natural choice: PHP and MySQL work well together PHP and... The web server reads the login .php file from the host’s hard drive 5 The web server detects that the PHP file isn’t just a plain HTML file, so it asks another process—the PHP interpreter—to process the file 6 The PHP interpreter executes the PHP code that it finds in the text it received from the web server process Included in that code are calls to the MySQL database 7 PHP asks the MySQL database process... that you can serve up web pages, you’re ready to add PHP 20 | Chapter 2: Installation www.it-ebooks.info Figure 2-8 Apache’s default index page after installation Installing PHP Go to http://www .php. net/downloads .php to download the latest version of PHP; both binaries and source code can be found on this web site Under Windows Binaries, select the PHP 5.x installer where x is the latest available version... need it PHP and MySQL are fast Their simple and efficient designs enable faster processing PHP and MySQL don’t bog you down with unnecessary details You don’t need to know all of the low-level details of how the PHP language interfaces with the MySQL database, as there is a standard interface for calling MySQL procedures from PHP Online application programming interfaces (APIs) at http://www .php. net... purpose of Apache (your web server), PHP (your server-side programming language), and MySQL (your database) This can help you to understand how they fit into the web development picture Remember that dynamic web pages pull information from several sources simultaneously, including Apache, PHP, MySQL, and Cascading Style Sheets (CSS), which we’ll talk about later PHP PHP grew out of a need for people to... to modify every single page on the web site PHP developers have learned that separating the PHP code from HTML can make life easier for both developers and business users who know how to modify HTML but don’t understand PHP very well By creating separate PHP template files that have placeholders for dynamic data, you can separate the HTML markup from the PHP code Example 1-2 shows an example template... Figure 1-3 The PHP interpreter, MySQL, and the web server cooperate to return the page 1 You enter a web page address in your browser’s location bar 2 Your browser breaks apart that address and sends the name of the page to the host For example, http://www.phone.com/login .php requests the page login .php from www.phone.com 3 The web server process on the host receives the request for login .php 4 The web... following list offers some good places to start: • Run Your Own Web Server Using Linux & Apache, by Tony Steidler-Dennison (SitePoint) • PHP in a Nutshell, First Edition, by Paul Hudson (O’Reilly) x | Preface www.it-ebooks.info • MySQL in a Nutshell, First Edition, by Russell Dyer (O’Reilly) • CSS Cookbook, Second Edition, by Christopher Schmitt (O’Reilly) There are also several good online resources... afterthought when the developers created the PHP and MySQL interfaces PHP and MySQL have open source power As they are both open source projects, PHP and MySQL can both be used for free MySQL client libraries are no longer bundled with PHP Advanced users have the ability to make changes to the source code, and therefore change the way the language and programs work PHP and MySQL have community support Both . www.it-ebooks.info Learning PHP and MySQL www.it-ebooks.info Other resources from O’Reilly Related titles Essential PHP Security Learning PHP 5 Learning MySQL Mastering. Cookbook ™ MySQL in a Nutshell MySQL Pocket Reference PHP Cookbook ™ PHP Hacks ™ Programming PHP Web Database Applications with PHP and MySQL oreilly.com oreilly.com is

Ngày đăng: 22/03/2014, 09:20

Từ khóa liên quan

Mục lục

  • Learning PHP and MySQL, Second Edition

    • Table of Contents

    • Preface

      • Audience

      • Assumptions This Book Makes

      • Organization of This Book

      • Supporting Books

      • Conventions Used in This Book

      • Using Code Examples

      • How to Contact Us

      • Safari® Books Online

      • Acknowledgments

      • Dynamic Content and the Web

        • HTTP and the Internet

        • PHP and MySQL’s Place in Web Development

          • Advantages of Using PHP with MySQL

          • The Value of Open Source

          • The Components of a PHP Application

            • PHP

            • Apache

            • SQL and Relational Databases

            • MySQL

            • Compatibility

            • Integrating Many Sources of Information

            • Requesting Data from a Web Page

Tài liệu cùng người dùng

Tài liệu liên quan