mysql related

hi,u all. i m working with a project library management,nd i stuck to a point dat how i delete a book from book available table nd insert into book issued table by clicking request button?plz help me out

To delete a book:
DELETE FROM (table name) WHERE (condition identifying records to be removed);
To insert a book:
INSERT INTO (table name) VALUES (comma separated values starting from first field);

to delete book from table :
DELETE FROM

WHERE;

to insert data into table:
INSERT INTO

VALUES(value1,value2,value3,… so on);