DevShed - Setting Up Database Driven Websites
★ wanayoo — archive 1999 http://www.devshed.com/Server_Side/Administration/Database/Nouvelle recherche | Portail wanayoo

Developer Shed
Sunday, 10.10.99  

HOME > SERVER SIDE > ADMINISTRATION > ARTICLE    SOURCE

Power Search
Free Newsletter:


Client Side
DHTML
Graphics
JavaScript

Server Side
Administration
ASP
JServ
MySQL
PHP
Python
Roxen
Zend
Zope
Web Hosting

Tools
HTML Editors
Graphic Editors
FTP Programs

Dev Talk
Forums
Mailing List
Brain Dump
Feedback

ClipScripts
Add script
Edit script


Advertise
on DevShed
JUMP TO:
> Introduction
> Requirements
> Installing MySQL
> Installing Apache
> Installing PHP
> Creating the Database
> Making a PHP Script
> Testing the Script
Setting Up Database Driven Websites
By Ying Zhang
May 20, 1999

Introduction

This guide walks you through installing a web server, an SQL database server, and a server-side scripting tool that ties everything together. Some of the more popular tools for doing this are Apache, MySQL, and PHP3.

This is what you will have accomplished after successfully completing this guide:

  • setup the MySQL database server
  • setup the Apache web server
  • setup the PHP 3.0 Hypertext Preprocessor for server-side-scripting
  • create a simple web enabled database

This guide is meant as an introductory guide to get you started in the world of server-side-scripting and web databases. It will help you get up and running with the aforementioned products, and hopefully give you a better understanding of how this stuff all works.

How It Works

It is helpful to have a feeling for what goes on behind the scenes, so here is an over simplification of how things would work,. This diagram isn't really correct but it should be enough for now:

diagram1.gif (2327 bytes)

So let's set the scenario. We have a web page that pulls some data out of a database. John Doe requests this page from his browser, the request is sent to the web server which in turn calls a PHP script. The PHP script is executed by the PHP preprocessor, it pulls data from the database. The results are then massaged by the rest of the PHP script and turned into HTML. The final HTML gets sent back to the user's browser.

Got that? Let's look at this step by step:

  1. John Doe clicks on a link to from his web browser; his web browser sends a request for http://www.foo.com/foofoo.php3.

  2. Apache gets the request for foofoo.php3. It knows that .php3 files are handled by the PHP preprocessor, so it tells PHP to deal with it.

  3. foofoo.php3 is a PHP script that contains commands. One of these commands is to open a connection to a database and grab some data. PHP knows how to talk to the database, so it does its thing.

  4. The data comes back from the database, and foofoo.php3 does something to format the data. Typically this would be to make it look pretty before formatting it into HTML.

  5. The HTML goes back to Apache.

  6. Apache sends this back to John Doe's browser, as the response to his request. John Doe now sees a pretty web page containing some information from a database.

Again, that's not 100% correct but it's enough to understand what goes on :). Now that we have a basic understanding of what we are trying to accomplish, let's get on to installing the software.



Click here to discuss this article
with other readers
. 79 comments.


Click here to receive updates on the latest articles.




Printer friendly versionPrinter friendly version

Tech News:
• Windows NT Virus Discovered
• Microsoft Enters Smart Card Industry
• U.S. Space Command Defends Military's Computer Networks
• Dell Affected by Shortage of Notebook Screens - not Earthquake
•  More news..

Hot Forum Topics
Executing scripts...
File upload handling (file types etc.)
check for the uniqueness of an entry !?
MySQL passwords in PHP scripts



Copyright © 1997-99 ngenuity. All rights reserved. Privacy Policy.