Language:EN
Pages: 622
Rating : ⭐⭐⭐⭐⭐
Price: $10.99
Page 1 Preview
www idg books worldwide web site copyright idg boo

Www idg books worldwide web site copyright idg books worldwide

MySQL/PHP Database Applications

MySQL/PHP Database Applications

Foster City, CA GChicago, IL GIndianapolis, IN GNew York, NY

Printed in the United States of America

10 9 8 7 6 5 4 3 2 1

For general information on IDG Books Worldwide’s books in the U.S., please call our Consumer Customer

Service department at 800-762-2974. For reseller information, including discounts and premium sales, please call our Reseller Customer Service department at 800-434-3422.

For information on using IDG Books Worldwide’s books in the classroom or for ordering examination copies, please contact our Educational Sales department at 800-434-2086 or fax 317-572-4005.

For press review copies, author interviews, or other
publicity information, please contact our Public Relations department at 650-653-7000 or fax 650-653-7500.

ISBN 0-7645-3537-4 (alk. paper)
1. SQL (Computer program language) 2. PHP (Computer program language 3.Web databases.

I. Bulger, Brad, 1959- II. Title.

is a registered trademark or trademark
under exclusive license to IDG Books Worldwide, Inc.

from International Data Group, Inc. in the United States and/or other countries.

Launched in 1990, IDG Books Worldwide is today the #1 publisher of best-selling computer books in the United States. We are proud to have received eight awards from the Computer Press Association in recognition of editorial excellence and three from Computer Currents’ First Annual Readers’ Choice Awards. Our best-selling ...For Dummies® series has more than 50 million copies in print with translations in 31 languages. IDG Books Worldwide, through a joint venture with IDG’s Hi-Tech Beijing, became the first U.S. publisher to publish a computer book in the People’s Republic of China. In record time, IDG Books Worldwide has become the first choice for millions of readers around the world who want to learn how to better manage their businesses.

Our mission is simple: Every one of our books is designed to bring extra value and skill-building instructions to the reader. Our books are written by experts who understand and care about our readers. The knowledge base of our editorial staff comes from years of experience in publishing, education, and journalism —experience we use to produce books to carry us into the new millennium. In short, we care about books, so we attract the best people. We devote special attention to details such as audience, interior design, use of icons, and illustrations. And because we use an efficient process of authoring, editing, and desktop publishing our books electronically, we can spend more time ensuring superior content and less time on the technicalities of making books.

Eleventh Annual Computer Press Awards 1992 Computer Press Ninth Annual Computer Press Tenth Annual Awards 1995

Awards 1993 Awards 1994

TECHNICAL EDITORS Richard Lynch
Michael Widenius

COPY EDITOR
S. B. Kleinman

MEDIA DEVELOPMENT SPECIALIST Angela Denny

MEDIA DEVELOPMENT COORDINATOR Marisa Pearman

About the Authors

Jay Greenspan made his living as a technical consultant and editor before finding his way into Wired Digital’s Webmonkey. There he learned everything he knows about Web technology and gained an appreciation for electronic music, the color orange, and a “cute top.” He now makes his living as a writer and consultant. He will neither confirm nor deny the rumors that he once worked for a prime-time game show.

Both PHP and MySQL are easy to use, fast, free, and powerful. If you want to get a dynamic Web site up quickly, there are no better choices. The PHP scripting lan-guage was built for the Web. All the tasks common to Web development can be accomplished in PHP with an absolute minimum of effort. Similarly, MySQL excels at tasks common to dynamic Web sites. Whether you’re creating a content-management system or an e-commerce application, MySQL is a great choice for your data storage.

Is This Book for You?

Part I: Using MySQL

Before you code any PHP scripts, you will need to know how to design a database, create tables in your database, and get the information you want from the database. Part I of this book will show you about all you need to know to work with MySQL.

As an applications developer, the bulk of your time will be spent writing scripts that access the database and present HTML to a user’s browser. Part II will start by showing you the basics of the PHP scripting language, covering how PHP works with variables, conditions, and control structures. Part II will also cover many of PHP’s functions and discuss techniques for writing clean, manageable code.

Part III: Simple Applications

The appendixes cover several topics of interest to the MySQL/PHP developer. In the appendixes, you will find installation and configuration instructions, quick refer-ence guides to PHP and MySQL functions, a regular expressions overview, and guides to MySQL administration. In addition, there are a few helpful resources, snippets of code, and instructions on using the CD-ROM.

Tell Us What You Think

xi

Contents at a Glance

Part II

Database Design with MySQL . . . . . . . . . . . . . . . . . 3 The Structured Query Language for Creating and
Altering Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 Getting What You Want with select . . . . . . . . . . . . 45

Simple Applications

Chapter 8 Chapter 9 Part IV

Chapter 10 Chapter 11 Chapter 12 Chapter 13 Chapter 14

Appendix A Appendix B

Preface. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ix

Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xi

Chapter 1

Update anomaly. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Delete anomaly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 Insert anomaly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 Normalization. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 1st normal form . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 2nd normal form . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 3rd normal form. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 Types of Relationships . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 One-to-many relationship . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 One-to-one relationship . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 Many-to-many relationship . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 Features MySQL Does Not Support . . . . . . . . . . . . . . . . . . . . 17 Referential integrity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 Transactions. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

Chapter 2

Stored procedures. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 The Structured Query Language for Creating and
Altering Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 Definitions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22

Chapter 3

insert Statement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 update Statement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 drop table/drop database . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 show tables. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 show columns/show fields . . . . . . . . . . . . . . . . . . . . . . . . . . 41 Using phpMyAdmin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 Getting What You Want with select . . . . . . . . . . . . . . . 45 Basic select . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45

The where clause . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 order by . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 limit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54 group by and aggregate functions . . . . . . . . . . . . . . . . . . . . . . . . . 54 having . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60 Joining Tables. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61 Two-table join (the equi-join). . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61 Multi-table join . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63 outer join . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64 self join . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65 Portions of SQL the SQL Standard that MySQL Doesn’t
Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67 Unions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67 Correlated subqueries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67

Delimiting Strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72 Assigning arrays within a script. . . . . . . . . . . . . . . . . . . . . . . . . . . 74 Assigning two-dimensional arrays in a script . . . . . . . . . . . . . . . . 76 Accessing Variables Passed from the Browser. . . . . . . . . . . . 77 HTML forms variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77 Passing arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 Cookies. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 Sessions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83 Using Built-In Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 PHP variables. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86 Apache variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87

Contents xvii

Chapter 5
Chapter 6

Including files. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109 PHP’s Built-in Functions . . . . . . . . . . . . . . . . . . . . . . . . 111 Function Basics. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 112

Arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 112 Return values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113 Function Documentation. . . . . . . . . . . . . . . . . . . . . . . . . . . 114 Important PHP 4 Functions. . . . . . . . . . . . . . . . . . . . . . . . . 114 MySQL API. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 115 String-handling functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 125 Regular expression functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . 135

Chapter 7

Code blocks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166 Function calls. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 167 SQL statements. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 Includes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 169 include() and require(). . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171 include_once() and require_once() . . . . . . . . . . . . . . . . . . . . . . . . 171 User-Defined Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . 172 Function basics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173 Returning values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175 Using a variable number of arguments . . . . . . . . . . . . . . . . . . . . 177 Variable scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 178 Object-Oriented Programming . . . . . . . . . . . . . . . . . . . . . . 180 Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 181 Instantiating an object . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184 Inheritance. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185 Object-Oriented Code versus Procedural Code . . . . . . . . . . 187 Comments. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187

Part III

Contents xix

Catalog . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 249 Determining the Scope and Goals of the Application . . . . . 250

Necessary Pages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 251 What Do We Need to Prevent? . . . . . . . . . . . . . . . . . . . . . . . . . . . 255 The Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 255 A flawed data design . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 255 MySQL oddities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 257 A better schema . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 259 Code Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 262 The object-oriented approach. . . . . . . . . . . . . . . . . . . . . . . . . . . . 262 Accessing the filesystem. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 263 Uploading files. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 263 Accessing outside utilities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 264 Code Breakdown. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 265 Objects in theory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 266 Objects in practice . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 267 Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 268

Chapter 11
xix

Chapter 12 Threaded Discussion . . . . . . . . . . . . . . . . . . . . . . . . . . . . 311 Determining the Scope and Goals of the Application . . . . . 312 What do you need? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 312 What do you need to prevent? . . . . . . . . . . . . . . . . . . . . . . . . . . . 315 The Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 316 Code Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 320 Code Breakdown . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 321 Reusable functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 321 Other Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 330

Chapter 13
Chapter 14
Contents xxi

Part V

Index. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 587 End-User License Agreement . . . . . . . . . . . . . . . . . . . 599 GNU General Public License . . . . . . . . . . . . . . . . . . . . . 602 CD-ROM Installation Instructions . . . . . . . . . . . . . . . . 608

Introduction

As we proceed with the book,we will assume that you have read and under-stand everything presented in this introduction.

You are viewing 1/3rd of the document.Purchase the document to get full access instantly

Immediately available after payment
Both online and downloadable
No strings attached
How It Works
Login account
Login Your Account
Place in cart
Add to Cart
send in the money
Make payment
Document download
Download File
img

Uploaded by : Elliot Morgan

PageId: DOCBE435B8