#### Member edit with bs

Create a DB name Members

Run sql

`````

CREATE TABLE IF NOT EXISTS `details` (
  `sn` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `address` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `phone` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
  `email` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`sn`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;

`````
Insert some dummy tekst
`````

INSERT INTO `details` (`sn`, `name`, `address`, `phone`, `email`) VALUES
(1, 'Joey Hallie', 'Purmerend, Nederland', '9802824412', 'contact@webonweb.nl'),
(2, 'Kunpeng Feng', 'Kerktuin, Nederland', '9802821134', 'ikbenkung@google.com');

`````

And done
Now you have a simple member table that you can edit