1. Start by establishing a connection to the MySQL database.
First, we should create an infostar table in a database in MySQL:
Follow the steps for testing MySQL, and after seeing the "mysql>" prompt, manually create the table we need:
mysql>CREATE DATABASE mydb
mysql>USE mydb
mysql>CREATE TABLE infostar(
->name VARCHAR(25),
->email VARCHAR(25),
->choice VARCHAR(10));
Okay, the table is created.Next, create a meeting form with users (pure HTML file)
diaocha.htm