TAILIEUCHUNG - PHP and MySQL Web Development - P110

PHP and MySQL Web Development - P110: PHP and MySQL Web Development teaches the reader to develop dynamic, secure, commercial Web sites. Using the same accessible, popular teaching style of the first edition, this best-selling book has been updated to reflect the rapidly changing landscape of MySQL and PHP. | Implementing the Database 517 Implementing the Database As we mentioned earlier we have made some minor modifications to the Book-O-Rama database presented in Part II. The SQL to create the book_sc database is shown in Listing . Listing book SQL to Create the book sc Database create database book_sc use book_sc create table customers customerid int unsigned not null auto_increment primary key name char 40 not null address char 40 not null city char 20 not null state char 20 zip char 10 country char 20 not null create table orders orderid int unsigned not null auto_increment primary key customerid int unsigned not null amount float 6 2 date date not null order_status char 10 ship_name char 40 not null ship_address char 40 not null ship_city char 20 not null ship_state char 20 ship_zip char 10 ship_country char 20 not null create table books isbn char 13 not null primary key author char 30 title char 60 catid int unsigned price float 4 2 not null description varchar 255 518 Chapter 25 Building a Shopping Cart Listing Continued create table categories catid int unsigned not null auto_increment primary key catname char 40 not null create table order_items orderid int unsigned not null isbn char 13 not null item_price float 4 2 not null quantity tinyint unsigned not null primary key orderid isbn create table admin username char 16 not null primary key password char 16 not null grant select insert update delete on book_sc. to book_sc@localhost identified by password Although nothing was wrong with the original Book-O-Rama interface we have a few other requirements now that we are going to make it available online. The changes we have made to the original database are as follows The addition of more address fields for customers this is more important now that we are building a more realistic application. The addition of a shipping address to an order. A customer s contact address might not be the same as the shipping address particularly if she is .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.