Printable Version of Topic

Click here to view this topic in its original format

HTMLHelp Forums _ Databases _ HELP HELP

Posted by: rovielruiz Jul 6 2011, 10:52 PM

Guyz can any one know how to create a database that will accept the people will register in my site

can i use exel as database that will accept the registry??

Posted by: pandy Jul 7 2011, 10:20 AM

Typically you do it with the control panel your host provides. Are databases included in your account?

Posted by: Mahdi Eftekhari Feb 20 2012, 08:28 PM

CODE
CREATE DATABASE Register
GO

CREATE TABLE
(
  email  varchar(50)  primary key,
  firstName varchar(25) NOT NULL,
  lastNaame varchar(30) NOT NULL,
  contactNumber char(12) NULL
) ON PRIMARY


This is a simplified suggestion. It all depends what information you want to keep, how you want to register and etc.

If this does not help provide us with more details.

Thanks
Mahdi Eftekhari

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)