Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

script to submit form data to database

Status
Not open for further replies.

5656

Technical User
Jan 6, 2001
68
US
How can I get information that a user inputs into a web based form into a database (preferably .mdb) over a secure connection.
I'm assuming it takes a certain script...?
Would I need to use CGI, ASP, etc ?

Thanks !
 
You can't do this with JavaScript (Client-side script), you need a server-side script (ColdFusion, ASP, ASP.Net, JSP, etc..)

Goodluck
 
If you want something easy to learn i'd try PHP! :)

If you werent set on using MBD you could use MySQL with comes installed and is free just like PHP and Apache. You can download phptriad to get a full working enviroment and the web is full of example! :)

One thing that comes in handy is that let's say you have this form :

<form action=&quot;myPHPScript.php&quot;>
<input type=&quot;text&quot; name=&quot;myText&quot; value=&quot;easy as cheese&quot;>
<input type=&quot;submit&quot; value=&quot;submit&quot;>
</form>

When the form is submitted in myPHPScript.php you can access the value of myText simply by referring to it with $myText

Easiest way to do web developement. PHP was made for web developement. None of the other languages I've seen make it so easy. Gary Haran
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top