Those who want to start with jsp and MySQL, this is an excellent example for themselves. Here you can learn how to insert data to MySQL using JSP. Also you can learn about session handling in jsp. 1 2 3 4 5 6 7 8 9 10 CREATE TABLE `members` ( `id` int (10) unsigned NOT NULL auto_increment, `first_name` varchar (45) NOT NULL , `last_name` varchar (45) NOT NULL , `email` varchar (45) NOT NULL , `uname` varchar (45) NOT NULL , `pass` varchar (45) NOT NULL , `regdate` date NOT NULL , PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; index.jsp 1 2 3 4 5 6 ...
Comments
Post a Comment