Web Database Applications with PHP & MySQL

Overview

What do eBay, Amazon.com and CNN.com have in common? They're all applications that integrate large databases with the Web. The popularity (and power) of these applications stems from their accessibility and usability: thousands of users can access the same data at the same time without theneed to install any additional software on their computers.Web Database Applications with PHP and MySQL offersweb developers a mixture of theoretical and practical information on creating web database applications. Using PHP, ...

See more details below
Available through our Marketplace sellers.
Other sellers (Paperback)
  • All (29) from $1.99   
  • New (6) from $3.65   
  • Used (23) from $1.99   
Close
Sort by
Page 1 of 1
Showing All
Note: Marketplace items are not eligible for any BN.com coupons and promotions
$3.65
Seller since Tue Aug 05 19:41:31 EDT 2014

Feedback rating:

(107)

Condition:

New — never opened or used in original packaging.

Like New — packaging may have been opened. A "Like New" item is suitable to give as a gift.

Very Good — may have minor signs of wear on packaging but item works perfectly and has no damage.

Good — item is in good condition but packaging may have signs of shelf wear/aging or torn packaging. All specific defects should be noted in the Comments section associated with each item.

Acceptable — item is in working order but may show signs of wear such as scratches or torn packaging. All specific defects should be noted in the Comments section associated with each item.

Used — An item that has been opened and may show signs of wear. All specific defects should be noted in the Comments section associated with each item.

Refurbished — A used item that has been renewed or updated and verified to be in proper working condition. Not necessarily completed by the original manufacturer.

New
PAPERBACK New 0596000413.

Ships from: San Mateo, CA

Usually ships in 1-2 business days

  • Canadian
  • International
  • Standard, 48 States
  • Standard (AK, HI)
  • Express, 48 States
  • Express (AK, HI)
$7.99
Seller since Mon Jan 01 01:01:01 EST 2007

Feedback rating:

(17)

Condition: New
NEW book has remainder mark at its edge: Buy ONE or MORE!

Ships from: Phoenix, AZ

Usually ships in 1-2 business days

  • Canadian
  • International
  • Standard, 48 States
  • Standard (AK, HI)
  • Express, 48 States
  • Express (AK, HI)
$24.60
Seller since Tue Jan 01 01:01:01 EST 2008

Feedback rating:

(171)

Condition: New
0596000413 BRAND NEW NEVER USED IN STOCK 125,000+ HAPPY CUSTOMERS SHIP EVERY DAY WITH FREE TRACKING NUMBER

Ships from: fallbrook, CA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
$40.78
Seller since Thu Jan 01 01:01:01 EST 2009

Feedback rating:

(902)

Condition: New
0596000413 *BRAND NEW* Ships Same Day or Next!

Ships from: Springfield, VA

Usually ships in 1-2 business days

  • Canadian
  • International
  • Standard, 48 States
  • Standard (AK, HI)
  • Express, 48 States
  • Express (AK, HI)
$45.00
Seller since Tue Oct 07 09:37:03 EDT 2014

Feedback rating:

(184)

Condition: New
Brand new.

Ships from: acton, MA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
$60.00
Seller since Tue Oct 07 09:37:03 EDT 2014

Feedback rating:

(184)

Condition: New
Brand new.

Ships from: acton, MA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
Page 1 of 1
Showing All
Close
Sort by
Sending request ...

Overview

What do eBay, Amazon.com and CNN.com have in common? They're all applications that integrate large databases with the Web. The popularity (and power) of these applications stems from their accessibility and usability: thousands of users can access the same data at the same time without theneed to install any additional software on their computers.Web Database Applications with PHP and MySQL offersweb developers a mixture of theoretical and practical information on creating web database applications. Using PHP, and MySQL, two open source technologies that are often combined to develop web applications, the book offers detailed information on designing relational databases and on web application architecture, both of which will be useful to readers who have never dealt with these issues before. The book also introduces Hugh and Dave's OnlineWines, a complete (but fictional) online retail site that allows users to browse, search a database, add items to a shopping cart, manage their membership, and purchase wines. Using this site as an example, the book shows you how to implement searching and browsing, store user data, validate user input, manage transactions, and maintain security.If you want to build small to medium-scale web database applications that can run on modest hardware and process more than a million hits a day from users, this book will show you how.

Read More Show Less

Editorial Reviews

From The Critics
Introduces techniques for building applications that integrate large databases with web interfaces. Using a three-tier architecture, the book focuses on the middle tier and the application logic that brings together the fundamentally different client and database tiers. The authors explain the principles behind searching, browsing, storing user data, validating user input, managing user transactions, and security. Annotation c. Book News, Inc., Portland, OR (booknews.com)
Read More Show Less

Product Details

  • ISBN-13: 9780596000417
  • Publisher: O'Reilly Media, Incorporated
  • Publication date: 3/1/2002
  • Edition description: Older Edition
  • Edition number: 1
  • Pages: 592
  • Product dimensions: 7.10 (w) x 9.22 (h) x 1.11 (d)

Meet the Author

Since the mid 1990s David Lane has worked as a software engineer and IT manager with the Multimedia Database Systems group at RMIT University in Melbourne, Australia. In that group he has helped to develop and commercialize the Structured Information Manager, a large-scale SGML/XML document repository and a high performance Web server. David has also worked with Australia's largest telecommunications company, Telstra, in areas as diverse as Satellite Communications, Human Factors Research, and Electronic Document Interchange (EDI). David has a Bachelor's degree in Applied Science (majoring in mathematics and computer science) from Swinburne University.

Read More Show Less

Table of Contents

Preface;
What This Book Is About;
What You Need to Know;
How This Book Is Organized;
How to Use This Book;
Conventions Used in This Book;
How to Contact Us;
Web Site and Code Examples;
Acknowledgments;
Chapter 1: Database Applications and the Web;
1.1 Three-Tier Architectures;
1.2 The Client Tier;
1.3 The Middle Tier;
1.4 The Database Tier;
1.5 Our Case Study;
Chapter 2: PHP;
2.1 Introducing PHP;
2.2 Conditions and Branches;
2.3 Loops;
2.4 A Working Example;
2.5 Arrays;
2.6 Strings;
2.7 Regular Expressions;
2.8 Date and Time Functions;
2.9 Integer and Float Functions;
2.10 User-Defined Functions;
2.11 Objects;
2.12 Common Mistakes;
Chapter 3: MySQL and SQL;
3.1 Database Basics;
3.2 Quick Start Guide;
3.3 MySQL Command Interpreter;
3.4 Managing Databases, Tables, and Indexes;
3.5 Inserting, Updating, and Deleting Data;
3.6 Querying with SQL SELECT;
3.7 Join Queries;
3.8 Modifying the Database;
3.9 Functions;
3.10 More on SQL and MySQL;
Chapter 4: Querying Web Databases;
4.1 Connecting to a MySQL Database;
4.2 Formatting Results;
4.3 Case Study: The Front-Page Panel;
4.4 Interacting with Other DBMSs Using PHP;
Chapter 5: User-Driven Querying;
5.1 User Input;
5.2 Querying with User Input;
5.3 Case Study: Previous and Next Browsing;
5.4 Case Study: Producing a select List;
Chapter 6: Writing to Web Databases;
6.1 Database Inserts, Updates, and Deletes;
6.2 Issues in Writing Data to Databases;
Chapter 7: Validation on the Server and Client;
7.1 Validation and Error Reporting for Web Database Applications;
7.2 Server-Side Validation;
7.3 Client-Side Validation with JavaScript;
Chapter 8: Sessions;
8.1 Building Applications That Keep State;
8.2 Session Management Over the Web;
8.3 PHP Session Management;
8.4 Case Study: Adding Sessions to the Winestore;
8.5 When to Use Sessions;
Chapter 9: Authentication and Security;
9.1 HTTP Authentication;
9.2 HTTP Authentication with PHP;
9.3 Authentication Using a Database;
9.4 Web Database Applications and Authentication;
9.5 Protecting Data on the Web;
Chapter 10: Winestore Customer Management;
10.1 Overview of the Winestore Application;
10.2 Customer Management;
10.3 Authenticating Users;
10.4 The Winestore Include Files;
Chapter 11: The Winestore Shopping Cart;
11.1 The Winestore Home Page;
11.2 The Shopping Cart Architecture;
11.3 Managing Redirection;
Chapter 12: Ordering and Shipping at the Winestore;
12.1 Finalizing Orders;
12.2 HTML and Email Receipts;
Chapter 13: Related Topics;
13.1 Automated Housekeeping;
13.2 Templates;
13.3 Searching and Browsing;
Installation Guide;
Installing MySQL, Apache, and PHP;
Installing the Winestore Examples;
Installing Apache to Use SSL;
Installation Resources;
Internet and Web Protocols;
The Internet;
Hypertext Transfer Protocol;
Modeling and Designing Relational Databases;
The Relational Model;
Entity-Relationship Modeling;
Managing Sessions in the Database Tier;
Using a Database to Keep State;
PHP Session Management;
MySQL Session Store;
Resources;
Client Tier Resources;
Middle Tier Resources;
Database Tier Resources;
Security and Cryptography Resources;
Colophon;

Read More Show Less

Customer Reviews

Be the first to write a review
( 0 )
Rating Distribution

5 Star

(0)

4 Star

(0)

3 Star

(0)

2 Star

(0)

1 Star

(0)

    If you find inappropriate content, please report it to Barnes & Noble
    Why is this product inappropriate?
    Comments (optional)