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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

WRITING AND READING FROM A DATABASE

Status
Not open for further replies.

27962796

Technical User
Dec 4, 2002
8
GB
Hi
I want to know how to read and write to a database file from a html file. i know its possible. All i want to do is store the information the user has entered on the webpage to the database. And possibly read back some information back from the database to the webpage

Could someone please point me to the right direction

thanx
 
you'll ned to incorpurate server side scripting to manage this task.
try this forum forum333 ASP
if you do not have ASP support you can look into PHP ---------------------------------------
{ str = "sleep is good for you. sleep gives you the energy you need to function";
ptr = /sleep/gi;Nstr = str.replace(ptr,"coffee");alert(Nstr); }
---------------------------------------
for the best results to your questions: FAQ333-2924

 
In addition to your old HTML you have to use one of the following technologies:
XML - you can store your information in XML file (as your database) or in real database such as Access or Oracle

PHP or ASP or JSP- server based scripting (data is stored in Access, MS SQL server, My Sql & others)

Cold Fusion - meta tag based technology ( the easiest to learn, but has the most expensive hosting and is not very popular)

XML is new and is not very hard to learn if you are familiar with basic concepts of JavaScript or VBScript data manipulation.

I personally started as self-tought Dreamweaver web designer, then learned Visual Basic, VB Script and ASP (which is based on VB script). Now I'm learning ASP.NET.
My recommendation - learn ASP.NET
It is not very complicated and there will be so much demand for it in the nearest future.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top