SHARE
Facebook X Pinterest WhatsApp

Build Your Own Database Driven Website Using PHP & MySQL: Pt. 2

Written By
thumbnail
Kevin Yank
Kevin Yank
Jan 10, 2002

As I’ve already explained, PHP is a server-side scripting
language that lets you insert into your Web pages instructions
that your Web server software (be it Apache, IIS, or whatever)
will execute before it sends those pages to browsers that request
them. In a brief example, I showed how it was possible to insert
the current date into a Web page every time it was requested.

Now that’s all well and good, but things really get interesting
when a database is added to the mix. A database server (in our
case, MySQL) is a program that can store large amounts of
information in an organized format that’s easily accessible
through scripting languages like PHP. For example, you could tell
PHP to look in the database for a list of jokes that you’d like
to appear on your Web site.

In this example, the jokes would be stored entirely in the
database. The advantage of this would be twofold. First, instead
of having to write an HTML file for each of your jokes, you could
write a single PHP file that was designed to fetch any joke out
of the database and display it. Second, to add a joke to your Web
site would be a simple matter of inserting the joke into the
database. The PHP code would take care of the rest, automatically
displaying the new joke along with the others when it fetched the
list from the database.

Let’s run with this example as we look at how data is stored in a
database. A database is composed of one or more tables,
each of which contains a list of things. For our joke
database, we’d probably start with a table called “jokes” which
would contain a list of jokes. Each table in a database has one
or more columns, or fields. Each column holds a
certain piece of information about each item in the table. In our
example, our “jokes” table might have columns for the text of the
jokes, and the dates on which the jokes were added to the
database. Each joke that we stored in this table would then be
said to be a row in the table. These rows and columns form
a table that looks like this:

A database table

Notice that, in addition to columns for the joke text
(“JokeText”) and the date of the joke (“JokeDate”), I included a
column named “ID”. As a matter of good design, a database table
should always provide a way to uniquely identify each of its
rows. Since it’s possible that a single joke could be entered
more than once on the same date, the JokeText and JokeDate
columns can’t be relied upon to tell all the jokes apart. The
function of the ID column, therefore, is to assign a unique
number to each joke, so we have an easy way to refer to them, and
to keep track of which joke is which. Such database design issues
will be covered with greater depth in Chapter 5.

So, to review, the above is a three-column table with two rows
(or entries). Each row in the table contains a joke’s ID, its
text, and the date of the joke. With this basic terminology under
our belts, we’re ready to get started with MySQL.

Recommended for you...

How to Use Databases With Python
technologyadv
Feb 10, 2023
What is MySQL?
Ronnie Payne
Dec 12, 2022
Best Certifications for Database Administrators
Ronnie Payne
Oct 14, 2022
Best Online Courses to Learn SQL
Ronnie Payne
Sep 23, 2022
Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.