Jump to content

Hi guys,

 

I am a newbie in programming world, but I really would like to learn how to. I'd like to make a fillable form ( name, address, city, phone, e-mail etc ), and let it save to a database. 

 

For example, when I have the fillable form, I can fill in all data and then press "ADD", and it automatically saves in the database. 

 

Can anyone recommend me some good software? Or show me how to do it, some tutorial or an example you made yourself?

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/
Share on other sites

Link to post
Share on other sites

Firstly what language? windows application? website? I'll need more information before i can help you.

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9527802
Share on other sites

Link to post
Share on other sites

What database are you using or don't you have one?

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9527857
Share on other sites

Link to post
Share on other sites

Are you sure you need a database? How many records are you planning to use? I might be able to get away with someone like XML or JSON for storing your data.

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9527890
Share on other sites

Link to post
Share on other sites

1 minute ago, vorticalbox said:

Are you sure you need a database? How many records are you planning to use? I might be able to get away with someone like XML or JSON for storing your data.

I think a couple of hundreds records you know, not completely sure.

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9527894
Share on other sites

Link to post
Share on other sites

29 minutes ago, adru =D said:

I think a couple of hundreds records you know, not completely sure.

WELL json and xml are read line by line so are rather "slow". You'll need to set up a database You could use a package like XAMPP to run a MySql database then mysql.data.dll to connect to it. read https://dev.mysql.com/doc/connector-net/en/connector-net-programming-connecting.html

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9528001
Share on other sites

Link to post
Share on other sites

7 minutes ago, vorticalbox said:

WELL json and xml are read line by line so are rather "slow". You'll need to set up a database You could use a package like XAMPP to run a MySql database then mysql.data.dll to connect to it. read https://dev.mysql.com/doc/connector-net/en/connector-net-programming-connecting.html

ok, I downloaded mysql and xampp

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9528023
Share on other sites

Link to post
Share on other sites

4 minutes ago, adru =D said:

ok, I downloaded mysql and xampp

open the control panel and click start next to MySql. then go to 127.0.0.1/phpmyadmin this will let you set up your database. Then it's a matter of importing the dll I mentioned and connecting and getting data. I would create you an example however i'm not free today.

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9528051
Share on other sites

Link to post
Share on other sites

2 minutes ago, vorticalbox said:

open the control panel and click start next to MySql. then go to 127.0.0.1/phpmyadmin this will let you set up your database. Then it's a matter of importing the dll I mentioned and connecting and getting data. I would create you an example however i'm not free today.

I can't connect to 127.0.0.1/phpmyadmin

 

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9528064
Share on other sites

Link to post
Share on other sites

Just now, adru =D said:

I can't connect to 127.0.0.1/phpmyadmin

 

Then xampp isn't running correctly.

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to comment
https://linustechtips.com/topic/753064-database-fillable-form/#findComment-9528070
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×