I have a table where i enter the students details.
Whenever we insert a row in this table, a mail should be sent to the student for the student to verify the details entered.
The email id is already stored in the table.
How to implement this using mysql?
[CODE=MYSQL]
create table s_details(
SELECT_ID INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
REF_NUMBER VARCHAR(20),
REG_NO VARCHAR(20),
TITLE varchar(4) NOT NULL,
FIRST_NAME varchar(30) NOT NULL,
MIDDLE_NAME varchar(30),
LAST_NAME varchar(30) NOT NULL,
DATE_OF_BIRTH date NOT NULL,
NATIONALITY varchar(50) ,
E_MAIL varchar(80) NOT NULL,
DAY_NUMBER int NOT NULL,
)TYPE=innodb;
[/CODE]
This is the table...
pls can anyone help on this?
Whenever we insert a row in this table, a mail should be sent to the student for the student to verify the details entered.
The email id is already stored in the table.
How to implement this using mysql?
[CODE=MYSQL]
create table s_details(
SELECT_ID INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
REF_NUMBER VARCHAR(20),
REG_NO VARCHAR(20),
TITLE varchar(4) NOT NULL,
FIRST_NAME varchar(30) NOT NULL,
MIDDLE_NAME varchar(30),
LAST_NAME varchar(30) NOT NULL,
DATE_OF_BIRTH date NOT NULL,
NATIONALITY varchar(50) ,
E_MAIL varchar(80) NOT NULL,
DAY_NUMBER int NOT NULL,
)TYPE=innodb;
[/CODE]
This is the table...
pls can anyone help on this?
Comment