make website....1 confusion??please help

India
June 28, 2009 3:20am CST
well mylotters please help me i want to make a website ..now i made sign up script sign in script and all and many redirection pages also but i am thinking how to store a person's data when he logs into my website ....for eg i made it...now someone sign in and sign outs ...how will his personal info will be stored plz help
6 responses
@1anurag1 (3576)
• India
9 Sep 09
u can use any database for the information to store but if u talk about personal data then u ve to get it frst at the time of registeration and when the user come u can ask the user to login so that u can track the same user how many time login or u can use the cookies but by this u can get only the system which is being used for the browsing purpose u can have different approaches and when the person log in successfully log the details immidately in ur databse too
@raj_ka (431)
• India
21 Aug 09
PHP can solve your problem if you can use some database with it. The coding is much easy in PHP to such conditions.Try it through online php tutorials and source codes. With simple html you cannt do it
@megh4u (372)
• Alpharetta, Georgia
29 Jun 09
To store data in your website you need to use database software so that you can able to store and retrive data from those database there are many database system depend upon the platform you are using if you are using asp.net then you need to use sqlserver to conncet you website to store data and other information but if you are using php you need to use mysql instead of sqlserver so I suggest you to better use php its easy and free to connect your database you need to create table where you need to store data and have to link appropriately so that the data insertion and retriving will get easy try to use some ebooks and online tutorials to help....if you need my help then please ask me.
@9872452 (40)
• Malaysia
29 Jun 09
I suggest you use PHP with mySQL(database). You need to install Apache,PHP and mySQL. I suggest you to install WAMPServer: http://www.wampserver.com/ for Windows, so you can test your project on your PC. Checkout these: - Tutorials : http://www.hotscripts.com/category/php/tutorials-tips/database-related/ - Scripts : http://www.hotscripts.com/category/php/scripts-programs/user-authentication/
• India
11 Jul 09
you need to use server side scripting and a database.ASP.net/php are known scripting language.Php is an open source so you need not pay any licences fee. use Mysql as data base.
@Lenvor (63)
• India
28 Jun 09
Nice, you are building it from scratch. As for storing data, there are many methods, like storing in a MySQL database, or if you don't have database facility on the server, you can use SQlite, or just plain flat files to store the data. but since the personal data is stored, its not nice to store it in a flat file, so either go with a Sqlite or MySQL database. By the way, if you have already made the script then where does the registration script stores the data, does it accepts new user registration and logins etc. Or does it just works on cookies and sessions. If you can tell in detail we can help you out build your registration system. Also do some googling to know how to store the data in database.