Computer Hope

Software => Computer programming => Topic started by: Arthur Cavalheiro on April 08, 2004, 06:21:40 AM

Title: HTML & DBs
Post by: Arthur Cavalheiro on April 08, 2004, 06:21:40 AM
 I would like to know if someone out there is able to inform me or just give me a clue about the interaction of a HTML's page with a Database or Databank, such as that one that occurs with PHP, but without the use of scripts?

Is there a system procedure that we could use, programing on SQL that could reach, read, store and send the information concerning to that inputed on the page writen in HTML?

Thanx U all and Happy Easter!!
Title: Re: HTML & DBs
Post by: Joleen on April 08, 2004, 11:30:04 AM
I'm afraid that without .asp/.jsp you're not going to be able to write to a database.  You *might* be able to do it with XML but my knowledge of it is basic at best.  Sorry.
Title: Re: HTML & DBs
Post by: Arthur Cavalheiro on April 08, 2004, 01:40:30 PM
Thanx anyhow for this tip... At last, we must try!!

[glb]Happy Easter[/glb]
Title: Re: HTML & DBs
Post by: folklore on June 09, 2004, 10:45:37 AM
Nope - you can't do it with normal HTML or JavaScript. JavaScript is a client-side language, which means it is executed on your browser, and therefore doesn't have the functionality to connect to a server-side database.

Even though server-side languages return HTML-formatted output from databases and such, HTML is also considered to be a client-side language by many web designers and developers.

So, as Joleen said - sorry - no! :(

Regards,

FolkLore