|
CMS takes the work out of building interactive websites.
Create a website at Omnis Network
using Joomla, PostNuke or other popular software.
Installs instantly using the FANTASTICO script installer!!
Your site will have automatic features like member sign up and site search.
Features like message boards and chat are easily added.
|
PHP MySQL Interactive Website Design
Creating a Table
A database will contain a variable number of tables of data which are arranged in columns and rows. Each table is supplied with a unique name upon creation. Variables contained within the table are supplied with definitions for type and length.
CREATE TABLE birthdays( id INT NOT NULL AUTO_INCREMENT,
PRIMARY KEY(id),
name VARCHAR(30),
birthday VARCHAR(7));
In the example shown above, we create a table named birthdays.
The table contains 3 columns:
a primary key field called id which will be automatically incremented each time a record is added.
a
name field which will contain a variable number of characters up to 30
a birthday field which will contain a variable number of characters up to 7.
|
Contents
Free PHP MySQL Tools
Introduction to PHP MySQL
Connecting to the Server
Creating a Database
Adding Data
Displaying Data
Editing Table Data
Delete Table Data
Altering Tables
Advanced
Multiple Selection Forms
Create a Simple Poll
|