Beginning PHP6, Apache, MySQL Web Development- P11 doc

30 643 0
Beginning PHP6, Apache, MySQL Web Development- P11 doc

Đ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

Chapter 10: Building Databases 271 And just like that, you have created your database design. Congratulations! You now have a “ map ” that will help you create your database tables on the server. Not only that, but you just normalized your database design as well, by modifying your database table structure so that dependencies make sense, and there is no redundant data. In fact, you have actually gone through the proper normalization steps of First, Second, and Third Normal Form. What ’ s So Normal about These Forms? Remember we told you to call the first table “ zero ” ? That ’ s called zero form. It is basically the raw data, and is usually a very flat structure, with lots of repeated data. You see data like this sometimes when a small company keeps records of its customers in a spreadsheet. The first pass through the table, which you called pass “ one, ” was the first step of normalization, called First Normal Form, commonly abbreviated as 1NF. This step requires that you eliminate all repeating data in columns (which you did with the power column), create separate rows for each group of related data, and identify each record with a primary key. The first step satisfies the requirements of 1NF. You can see where we ’ re going with this, can ’ t you? The Second Normal Form (2NF) requirements state that you must place subsets of data in multiple rows in separate tables. You did that by separating the power data into its own table. Second Normal Form also requires that you create a relationship with the original table by creating a foreign key. You did that in pass “ two, ” when you satisfied the requirements for 2NF. On your third pass, you removed all the columns not directly related to the primary key (city and state), and used the zip code as the foreign key to the new city_state table. Third Normal Form (3NF) is then satisfied. Congratulations! You normalized a database just like the pros do. There are further requirements for database normalization, but Third Normal Form (3NF) is generally accepted as being good enough for most business applications. The next step is Boyce - Codd Normal Form (BCNF), followed by Fourth Normal Form (4NF) and Fifth Normal Form (5NF). In this case, the other forms don ’ t apply — the database is as normalized as it needs to get. All tables are easily modifiable and updatable, without affecting data in the other tables. We know there are some database gurus out there who would tell you that in order to completely satisfy the forms of normalization, the alignment column should be put into its own table and linked with a foreign key as well. While that may be true in the strictest sense of the rules, we usually think of normalization as a guideline. In this case, we have only two values, good and evil. Those values will never change, and they will be the only values available to the user. Because of this, we can actually create a column with the ENUM datatype. Because the values good and evil will be hard - coded into the table definition, and we don ’ t see a need ever to change the values in the future, there is no problem with keeping those values in the char_main table. c10.indd 271c10.indd 271 12/10/08 5:59:53 PM12/10/08 5:59:53 PM Part II: Comic Book Fan Site 272 Standardization When you are designing a new application, it is a very good idea to come up with standards , or design rules, that you adhere to in all cases. These can be extensive, such as the standards published by the W3C for HTML, XML, and other markup languages. They can also be very short, but very strict, such as the list of 10 standards brought down from a mountain by an old, bearded man long ago. For now, you ’ ll just standardize your table structure. For this application, we came up with the following table standards: Table names: Table names should be descriptive, but relatively short. Table names will be in lowercase. They should describe what main function they serve, and which application they belong to. All six tables should start with comic_ to show that they belong to our comic book application. Many people prefer to list the name in a singular form. Column names: Table columns are similar to table names. All column names will be in lowercase. They will be kept short, but multiple words (such as lair and address) will be separated by an underscore ( _ ) (e.g., lair_addr ). Primary keys: Single primary keys will always be called tablename_id . Except in special cases, primary keys will be an integer datatype that is automatically incremented. If they consist of a single column, they will always be the first column of the table. Foreign keys: Foreign keys will end with _id . They will start with the table descriptor. For example, in the char_lair table, the foreign key for the char_zipcode table will be called zip_id . Finalizing the Database Design One other thing we like to do during the database design process is put the datatypes into the empty cells of each table. You can save these tables and easily refer to them when you are writing the SQL code. You may want to do this yourself (or just use the tables provided). If you don ’ t understand MySQL ’ s datatypes, you can learn about them in Chapter 3, and datatypes are discussed in more detail a little later in this chapter as well. For now, just understand that datatypes are the type of data stored in each table column, such as INT (integer), VARCHAR (variable - length character string), CHAR (fixed - length character string), or ENUM (enumerated list). When appropriate, they are followed by the length in parentheses; for example, varchar(100) is a character column that can contain up to 100 characters. Reduce the tables to two rows, one with column names, the other row blank. If you want, you can make a photocopy of your tables before erasing the data. In keeping with the previously listed table standards, we arrive at the following tables. Yours should look very similar. Character_Id* Lair_Id Name Real_Name Alignment int int varchar(40) varchar(80) enum(‘good’,’evil’) ❑ ❑ ❑ ❑ c10.indd 272c10.indd 272 12/10/08 5:59:53 PM12/10/08 5:59:53 PM Chapter 10: Building Databases 273 Power_Id* Power int varchar(40) Character_Id* Power_Id* int int Lair_Id* Zipcode_Id Address int char(5) varchar(40) Zipcode_Id* City State varchar(10) varchar(40) char(2) Hero_Id* Villain_Id* int(11) int(11) We think it is about time you actually created these tables on the server. Ready? Let ’ s create the database first, and then get going! Creating a Database in My SQL You can create a database in a number of ways. All require the execution of a SQL statement in one way or another, so let ’ s look at that first: CREATE DATABASE yourdatabase ; Were you expecting something more complicated? Well, an optional parameter is missing: IF NOT EXISTS . We ’ re pretty sure you know whether or not it exists, but if it makes you feel better, you can certainly add it: CREATE DATABASE IF NOT EXISTS yourdatabase ; To see a list of databases that already exist use: SHOW DATABASES; That ’ s all there is to it. Think of the database as an empty shell. There is nothing special about it, really. The interesting stuff comes later, when you create tables and manipulate the data. c10.indd 273c10.indd 273 12/10/08 5:59:54 PM12/10/08 5:59:54 PM Part II: Comic Book Fan Site 274 That said, you still have to figure out how you are going to execute a SQL statement. Here are a few suggestions: You can do this from the MySQL command prompt. It should only be done this way if you have access to the server on which MySQL is installed. If you are running your own server, or you have Telnet access to the server, this may be an option for you. If you are being hosted by an ISP, you may need to request that the ISP create a database for you. For example, on one author ’ s site, the ISP has CPanel installed, and he simply clicks the module called MySQL Databases . From the next page, he simply types in the database he wants to create and clicks a button, and it ’ s created for him. ISPs will usually give you this option because you have a limit in your contract on how many databases you are allowed to create. On one of our sites, for example, the limit is 10 databases. If you have PHPMyAdmin installed, you can run the SQL command from there. PHPMyAdmin is a PHP application that allows you to see your table structures and even browse data. It is also a dangerous tool, because you can easily drop tables or entire databases with the click of a button, so use it carefully. Another option is to run your SQL statement from a PHP file. Most likely, if you are hosted by an ISP, it won ’ t allow the creation of databases in this manner. But almost any other SQL statement will work using this method. This is the way we ’ ve been running commands so far in the book, and will be running SQL commands through the rest of this chapter, as well. Once you have determined how you are going to run that SQL command, go ahead and do it. Make sure you substitute your own database name for yourdatabase . Because you are going to develop a comic book appreciation web site, you could call it comicsite : CREATE DATABASE IF NOT EXISTS comicbook_fansite; Now that you have a design mapped out and a database created in MySQL, it is time to create some tables. Try It Out Creating the Tables In this exercise, you ’ ll create the file that will hold the hostname, username, password, and database values. Then you will create the database tables. 1. Open your favorite text editor, and enter the following code (making sure you use the proper values for your server): < ?php define(‘MYSQL_HOST’,’localhost’); define(‘MYSQL_USER’,’bp6am’); define(‘MYSQL_PASSWORD’,’bp6ampass’); define(‘MYSQL_DB’,’comicbook_fansite’); ? > ❑ ❑ ❑ ❑ c10.indd 274c10.indd 274 12/10/08 5:59:54 PM12/10/08 5:59:54 PM Chapter 10: Building Databases 275 2. Save the file as db.inc.php . This file will be included in each subsequent PHP file that needs to access the database, and provides the connection information. Keep it handy because you ’ ll be using it in subsequent chapters as well. 3. Type the following code in your editor, and save it as db_ch10.php : < ?php require ‘db.inc.php’; $db = mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASSWORD) or die (‘Unable to connect. Check your connection parameters.’); mysql_select_db(MYSQL_DB, $db) or die(mysql_error($db)); // create the comic_character table $query = ‘CREATE TABLE IF NOT EXISTS comic_character ( character_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, alias VARCHAR(40) NOT NULL DEFAULT “”, real_name VARCHAR(80) NOT NULL DEFAULT “”, lair_id INTEGER UNSIGNED NOT NULL DEFAULT 0, alignment ENUM(“good”, “evil”) NOT NULL DEFAULT “good”, PRIMARY KEY (character_id) ) ENGINE=MyISAM’; mysql_query($query, $db) or die (mysql_error($db)); // create the comic_power table $query = ‘CREATE TABLE IF NOT EXISTS comic_power ( power_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, power VARCHAR(40) NOT NULL DEFAULT “”, PRIMARY KEY (power_id) ) ENGINE=MyISAM’; mysql_query($query, $db) or die (mysql_error($db)); // create the comic_character_power linking table $query = ‘CREATE TABLE IF NOT EXISTS comic_character_power ( character_id INTEGER UNSIGNED NOT NULL DEFAULT 0, power_id INTEGER UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY (character_id, power_id) ) ENGINE=MyISAM’; mysql_query($query, $db) or die (mysql_error($db)); // create the comic_lair table $query = ‘CREATE TABLE IF NOT EXISTS comic_lair ( lair_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, zipcode_id CHAR(5) NOT NULL DEFAULT “00000”, address VARCHAR(40) NOT NULL DEFAULT “”, PRIMARY KEY (lair_id) ) c10.indd 275c10.indd 275 12/10/08 5:59:54 PM12/10/08 5:59:54 PM Part II: Comic Book Fan Site 276 ENGINE=MyISAM’; mysql_query($query, $db) or die (mysql_error($db)); // create the comic_zipcode table $query = ‘CREATE TABLE IF NOT EXISTS comic_zipcode ( zipcode_id CHAR(5) NOT NULL DEFAULT “00000”, city VARCHAR(40) NOT NULL DEFAULT “”, state CHAR(2) NOT NULL DEFAULT “”, PRIMARY KEY (zipcode_id) ) ENGINE=MyISAM’; mysql_query($query, $db) or die (mysql_error($db)); // create the comic_rivalry table $query = ‘CREATE TABLE IF NOT EXISTS comic_rivalry ( hero_id INTEGER UNSIGNED NOT NULL DEFAULT 0, villain_id INTEGER UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY (hero_id, villain_id) ) ENGINE=MyISAM’; mysql_query($query, $db) or die (mysql_error($db)); echo ‘Done.’; ? > 4. Run db_ch10.php by loading it in your browser. Assuming all goes well, you should see the message “ Done ” in your browser, and the database now should contain all six tables. How It Works Every PHP script that needs to access your database on the MySQL server will include db.inc.php . These constants will be used in your scripts to gain access to your database. By putting them here in one file, you can change the values any time you move servers, change the name of the database, or change your username or password, without having to explicitly edit every other code file. Any time you have information or code that will be used in more than one PHP script, you should include it in a separate file so you ’ ll only need to make your changes in one location in the future. define(‘MYSQL_HOST’,’localhost’); define(‘MYSQL_USER’,’bp6am’); define(‘MYSQL_PASS’,’bp6ampass’); define(‘MYSQL_DB’,’comicbook_fansite’); The db_ch10.php file is a one - time script: You should never have to run it again, unless you need to drop all of your tables and recreate them. Rather than explain all of the code in the page, we ’ ll just look at one of the SQL statements: CREATE TABLE IF NOT EXISTS comic_character ( character_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, alias VARCHAR(40) NOT NULL DEFAULT “”, real_name VARCHAR(80) NOT NULL DEFAULT “”, lair_id INTEGER UNSIGNED NOT NULL DEFAULT 0, c10.indd 276c10.indd 276 12/10/08 5:59:55 PM12/10/08 5:59:55 PM Chapter 10: Building Databases 277 alignment ENUM(“good”, “evil”) NOT NULL DEFAULT “good”, PRIMARY KEY (character_id) ) ENGINE=MyISAM The syntax for creating a table in MySQL is the following: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [( create_definition , )] [ table_options ] [ select_statement ] Obviously, you are not using the TEMPORARY keyword, because you want this table to be permanent and exist after you close your connection with the database. You are using the IF NOT EXISTS keywords as a safety measure, in case this page were to be loaded twice. If you attempt to load the page again, MySQL will not attempt to recreate the tables and will not generate an error. The table name in this case is comic_character . The columns the script creates are character_id , alias , real_name , lair_id , and alignment , which are the names we came up with earlier. Let ’ s look at each column: character_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT : The character_id column is set as an integer. An integer datatype can contain the values Ϫ 2,147,483,648 to 2,147,483,648, but since you won ’ t be storing negative values in the column, you make the definition UNSIGNED, which lets you store 0 to 4,294,967,295. NOT NULL will force a value into the column. With some exceptions, numeric columns will default to 0, and string columns will default to an empty string. Very rarely will you allow a column to carry a NULL value. AUTO_INCREMENT causes the column to increase the highest value in the table by 1 each time a record is added and store it in this column. A column designated as auto - incrementing does not have a default value. alias VARCHAR(40) NOT NULL DEFAULT “ “ : The alias column is set as a VARCHAR datatype. By default, this datatype can hold up to 255 characters, but you are allotting 40 characters, which should be enough for any character name. A VARCHAR differs from a CHAR datatype by the way space is allotted for the column. A VARCHAR datatype occupies only the space it needs, whereas CHAR datatypes will always take up the space allotted to them when they are stored in the database. The only time you really need to use the CHAR datatype is for strings of known fixed length (such as the zipcode_id and state columns in the comic_zipcode table). real_name VARCHAR(80) NOT NULL DEFAULT “ “ : This column is similar to alias . You are allotting 80 characters, which should be enough for your needs. Note that you did not separate the real_name column into first_name and last_name col- umns. You certainly could, if you wanted to do that, but in this small application it really isn ’ t necessary. On the other hand, having separate columns for first and last name is almost a re- quirement in a company ’ s human resources application, so that you can do things such as greet employees by their first names in a company memo. ❑ ❑ ❑ ❑ ❑ c10.indd 277c10.indd 277 12/10/08 5:59:55 PM12/10/08 5:59:55 PM Part II: Comic Book Fan Site 278 lair_id INTEGER UNSIGNED NOT NULL DEFAULT 0 : The foreign key to the comic_lair table is also an integer with a default value of 0. alignment ENUM( “ good ” , “ evil “ ) NOT NULL DEFAULT “ good “ : The alignment column can be one of two values: “ good ” or “ evil. ” Because of this, you use an enum datatype, and default it to “ good. ” (Everyone has some good in them, right?) You now have a database. You have tables. If you just had a way to enter some data into your tables in your database, you ’ d have an application where your users would be able to store information about their favorite superheroes and villains. You need some sort of interface that they can use to create and edit data, which means you need to design some web pages for them. Creating the Comic Character Application It ’ s back to the drawing board. Literally. Get away from your computer again, dig out that paper and pencil, and prepare to put together some ideas for a web application. First of all, you need a page to display a list of comic book characters, along with some information about them. It doesn ’ t need to include every detail about them (such as the location of their secret lair), but it should have enough data so that users can distinguish who they are and read a little bit of information about them. You will list the following information: Character name (alias) Real name Alignment (good or evil) Powers Enemies You also need a character input form. This form will serve two purposes. It will allow you to create a new character, in which case the form will load with blank fields and a create button, or it will allow you to edit an existing character, in which case it will load with the fields filled in and an update button. The form will also have a reset button to clear the new form or restore the edited form fields. A delete button should also be available, when editing an existing character, to allow the character ’ s record to be deleted from the database. The fields on your form will be as follows: Real name (text input) Character name/alias (text input) Powers (multiple select field) ❑ ❑ ❑ ❑ ❑ ❑ ❑ ❑ ❑ ❑ c10.indd 278c10.indd 278 12/10/08 5:59:56 PM12/10/08 5:59:56 PM Chapter 10: Building Databases 279 Lair address, city, state, and zip code (text inputs) Alignment (radio button: good/evil, default good) Enemies (multiple select field) You also need a form for adding and deleting powers. This form will be relatively simple and will contain the following elements: A check box list of every power currently available A Delete Selected button A text field to enter a new power An Add Power button You also need a PHP script that can handle all database inserts, deletes, and so on. This should simply do the required job and redirect the user to another page. This page handles all transactions for the character application (with redirect), including the following: Inserting a new character (character listing page) Editing an existing character (character listing page) Deleting a character (character listing page) Adding a new power (power editor page) Deleting a power (power editor page) That ’ s basically all there is to the application. Four pages (well, five if you count the db.inc.php file you created earlier) shouldn ’ t be too difficult. You ’ ll write them first, and we ’ ll talk about how they work afterward. Try It Out Transaction Script Some of these files are a bit long, but don ’ t let that scare you. Most of the code consists of SQL statements, and they are explained clearly for you in the “ How It Works ” section that follows. 1. Start with a transaction script. This code is the longest, but that ’ s because it contains a lot of SQL statements. You know the drill . . . after entering it, save this one as char_transaction.php : < ?php require ‘db.inc.php’; $db = mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASSWORD) or die (‘Unable to connect. Check your connection parameters.’); mysql_select_db(MYSQL_DB, $db) or die(mysql_error($db)); switch ($_POST[‘action’]) { ❑ ❑ ❑ ❑ ❑ ❑ ❑ ❑ ❑ ❑ ❑ ❑ c10.indd 279c10.indd 279 12/10/08 5:59:56 PM12/10/08 5:59:56 PM Part II: Comic Book Fan Site 280 case ‘Add Character’: // escape incoming values to protect database $alias = mysql_real_escape_string($_POST[‘alias’], $db); $real_name = mysql_real_escape_string($_POST[‘real_name’], $db); $address = mysql_real_escape_string($_POST[‘address’], $db); $city = mysql_real_escape_string($_POST[‘city’], $db); $state = mysql_real_escape_string($_POST[‘state’], $db); $zipcode_id = mysql_real_escape_string($_POST[‘zipcode_id’], $db); $alignment = ($_POST[‘alignment’] == ‘good’) ? ‘good’ : ‘evil’; // add character information into database tables $query = ‘INSERT IGNORE INTO comic_zipcode (zipcode_id, city, state) VALUES (“’ . $zipcode_id . ‘”, “’ . $city . ‘”, “’ . $state . ‘”)’; mysql_query($query, $db) or die (mysql_error($db)); $query = ‘INSERT INTO comic_lair (lair_id, zipcode_id, address) VALUES (NULL, “’ . $zipcode_id . ‘”, “’ . $address . ‘”)’; mysql_query($query, $db) or die (mysql_error($db)); // retrieve new lair_id generated by MySQL $lair_id = mysql_insert_id($db); $query = ‘INSERT INTO comic_character (character_id, alias, real_name, lair_id, alignment) VALUES (NULL, “’ . $alias . ‘”, “’ . $real_name . ‘”, ‘ . $lair_id . ‘, “’ . $alignment . ‘”)’; mysql_query($query, $db) or die (mysql_error($db)); // retrieve new character_id generated by MySQL $character_id = mysql_insert_id($db); if (!empty($_POST[‘powers’])) { $values = array(); foreach ($_POST[‘powers’] as $power_id) { $values[] = sprintf(‘(%d, %d)’, $character_id, $power_id); } $query = ‘INSERT IGNORE INTO comic_character_power (character_id, power_id) VALUES ‘ . implode(‘,’, $values); mysql_query($query, $db) or die (mysql_error($db)); } if (!empty($_POST[‘rivalries’])) { $values = array(); foreach ($_POST[‘rivalries’] as $rival_id) { $values[] = sprintf(‘(%d, %d)’, $character_id, $rival_id); } // alignment will affect column order $columns = ($alignment = ‘good’) ? ‘(hero_id, villain_id)’ : c10.indd 280c10.indd 280 12/10/08 5:59:56 PM12/10/08 5:59:56 PM [...]... /> . ‘db.inc.php’; $db = mysql_ connect (MYSQL_ HOST, MYSQL_ USER, MYSQL_ PASSWORD) or die (‘Unable to connect. Check your connection parameters.’); mysql_ select_db (MYSQL_ DB, $db) or die (mysql_ error($db)); . ‘db.inc.php’; $db = mysql_ connect (MYSQL_ HOST, MYSQL_ USER, MYSQL_ PASSWORD) or die (‘Unable to connect. Check your connection parameters.’); mysql_ select_db (MYSQL_ DB, $db) or die (mysql_ error($db)); . changes in one location in the future. define( MYSQL_ HOST’,’localhost’); define( MYSQL_ USER’,’bp6am’); define( MYSQL_ PASS’,’bp6ampass’); define( MYSQL_ DB’,’comicbook_fansite’); The db_ch10.php

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

Từ khóa liên quan

Mục lục

  • cover.pdf

  • page_c1.pdf

  • page_r01.pdf

  • page_r02.pdf

  • page_r03.pdf

  • page_r04.pdf

  • page_r05.pdf

  • page_r06.pdf

  • page_r07.pdf

  • page_r08.pdf

  • page_r09.pdf

  • page_r10.pdf

  • page_r11.pdf

  • page_r12.pdf

  • page_r13.pdf

  • page_r14.pdf

  • page_r15.pdf

  • page_r16.pdf

  • page_r17.pdf

  • page_r18.pdf

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

Tài liệu liên quan