Hey everyone, I'm looking to create a database for a site that I'm creating where people would post their info when they register for my site and then other people will be able to see their info. Now what kind of program should I use to create a database? Is it possible for the database to be automatically updated on my site once a new user registers and enters their info? I would really appreciate some advice Thanks to all that reply.
hi. if u expect a huge number of queries, its better to work with MySql. Its free, easy to use and works on all platforms. all database softwares can be autoatically updated by using the update, create and the delete commands. u just need to get the code right. all the best, try to work on it.
If you have a web site then you should find out if your hosting has mySQL database and a control panel. You will then be able to create a new database using the control panel. To be able to allow users to update the tables will require programming probably in php so you will have quite a lot to learn.
Hi use mytaskhelper.com You can create form with fields, which you need and integrate this form to the site.
If your web hositing server allows u to have a database then go for MySQl DB. create a simple database. u can use my code if u want to -- drop database users; create database users; drop table usersInfo; create table usersInfo ( NIC int (20) primary key, name char (20), location char(20), emailAddress char(20), gender char(20)); -- now just run this code in ur online Db server, either copy paste it or type it manually. Now the basic part of ur requirement is done. Now u have to display/Insert the data into the dB table. tell me which language u r using for coding, I might help u out. U can run the above code for ur db its fine PM me if u still need any help
First Check out the columns you want to create and then create and insert table values in it using MySQL plus.GO for a sample DB first.
If you are using PHP to develop your application, go for MySQL and if you are developing your application in ASP or ASP.Net got for MSSQL database.